1
0
Fork 0

do not output the xcopy summary

pull/1509/head
Christoph 2013-01-21 00:52:56 +01:00
parent e33aebc75d
commit c7c55915f8
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ class Filesystem
if (defined('PHP_WINDOWS_VERSION_BUILD')) {
// Try to copy & delete - this is a workaround for random "Access denied" errors.
$command = sprintf('xcopy %s %s /E /I /Q', escapeshellarg($source), escapeshellarg($target));
if (0 === $this->processExecutor->execute($command)) {
if (0 === $this->processExecutor->execute($command, $output)) {
$this->remove($source);
return;