From c7c55915f84cde04b57a7c9db9f18a07fce38ce6 Mon Sep 17 00:00:00 2001 From: Christoph Date: Mon, 21 Jan 2013 00:52:56 +0100 Subject: [PATCH] do not output the xcopy summary --- src/Composer/Util/Filesystem.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Util/Filesystem.php b/src/Composer/Util/Filesystem.php index aec3ef326..15c48dda5 100644 --- a/src/Composer/Util/Filesystem.php +++ b/src/Composer/Util/Filesystem.php @@ -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;