Fix xcopy command in FileSystem.php by removing the 'v' flag

This commit is contained in:
crazywhalecc
2026-04-03 15:34:56 +08:00
parent e5ad72214c
commit 1a476d0e80

View File

@@ -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':