[unit-test] fix formatting

This commit is contained in:
Mathis Logemann 2021-10-09 13:55:32 +02:00
parent 05c2278893
commit ba8a972254

View file

@ -75,9 +75,9 @@ int create_shapefile_index(std::string const& filename, bool index_parts, bool s
cmd += std::string("DYLD_LIBRARY_PATH=") + std::getenv("DYLD_LIBRARY_PATH") + " "; cmd += std::string("DYLD_LIBRARY_PATH=") + std::getenv("DYLD_LIBRARY_PATH") + " ";
} }
cmd += "shapeindex"; cmd += "shapeindex";
#ifdef _WINDOWS #ifdef _WINDOWS
cmd += ".exe"; cmd += ".exe";
#endif #endif
cmd += " "; cmd += " ";
if (index_parts) cmd+= "--index-parts "; if (index_parts) cmd+= "--index-parts ";
cmd += filename; cmd += filename;