Windows fixes

This commit is contained in:
Dmitry Khomutov 2014-03-15 12:57:06 +07:00
commit 8cd30ffdfe
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ class LocalBuild extends Build
} else {
$cmd = 'cp -Rf "%s" "%s/"';
if (IS_WIN) {
$cmd = 'copy /Y "%s" "%s/"';
$cmd = 'xcopy /E /Y "%s" "%s/*"';
}
$builder->executeCommand($cmd, $reference, $buildPath);
}