diff --git a/app/Platform.php b/app/Platform.php index 2117221..f1a8a9a 100644 --- a/app/Platform.php +++ b/app/Platform.php @@ -26,6 +26,8 @@ public static function temp_test_path(string $path = ''): string public static function normalizePath(string $path): string { + $path = str_replace(' ', '\ ', $path); + if ((new self)->isWindows()) { return str_replace('\\', '/', $path); }