Commit d7b0b54c authored by gabime's avatar gabime

fixed tests

parent dcdf2280
......@@ -36,9 +36,9 @@ static void prepare_logdir()
{
spdlog::drop_all();
#ifdef _WIN32
auto rv = system("mkdir logs;del /F /Q logs\\*");
auto rv = system("del /F /Q logs\\*");
#else
auto rv = system("mkdir logs;rm -f logs/*");
auto rv = system("rm -f logs/*");
#endif
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment