Update "clean".

This commit is contained in:
Christoffer Lerno
2023-10-05 19:06:55 +02:00
parent 32f6d711ac
commit d16ad0b4c7
3 changed files with 11 additions and 4 deletions

View File

@@ -485,7 +485,7 @@ bool file_delete_all_files_in_dir_with_suffix(const char *path, const char *suff
{
assert(path);
#if (_MSC_VER)
const char *cmd = "del /q %s\\*%s";
const char *cmd = "del /q \"%s\\*%s\"";
#else
const char *cmd = "rm -f %s/*%s";
#endif