Skip to content

Commit 1a476d0

Browse files
committed
Fix xcopy command in FileSystem.php by removing the 'v' flag
1 parent e5ad722 commit 1a476d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/SPC/store/FileSystem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ public static function copyDir(string $from, string $to): void
152152
$src_path = FileSystem::convertPath($from);
153153
switch (PHP_OS_FAMILY) {
154154
case 'Windows':
155-
f_passthru('xcopy "' . $src_path . '" "' . $dst_path . '" /s/e/v/y/i');
155+
f_passthru('xcopy "' . $src_path . '" "' . $dst_path . '" /s/e/y/i');
156156
break;
157157
case 'Linux':
158158
case 'Darwin':

0 commit comments

Comments
 (0)