From 1a476d0e802fc9b4001dd4e1023739fb0e59b2a0 Mon Sep 17 00:00:00 2001 From: crazywhalecc Date: Fri, 3 Apr 2026 15:34:56 +0800 Subject: [PATCH] Fix xcopy command in FileSystem.php by removing the 'v' flag --- src/SPC/store/FileSystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SPC/store/FileSystem.php b/src/SPC/store/FileSystem.php index 1d0815ce..d2d44b51 100644 --- a/src/SPC/store/FileSystem.php +++ b/src/SPC/store/FileSystem.php @@ -152,7 +152,7 @@ class FileSystem $src_path = FileSystem::convertPath($from); switch (PHP_OS_FAMILY) { case 'Windows': - f_passthru('xcopy "' . $src_path . '" "' . $dst_path . '" /s/e/v/y/i'); + f_passthru('xcopy "' . $src_path . '" "' . $dst_path . '" /s/e/y/i'); break; case 'Linux': case 'Darwin':