Browse Source

Do not add newlines for errors

Dries Vints 8 years ago
parent
commit
58b27289d0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Util/ProcessExecutor.php

+ 1 - 1
src/Composer/Util/ProcessExecutor.php

@@ -106,7 +106,7 @@ class ProcessExecutor
         }
 
         if (Process::ERR === $type) {
-            $this->io->writeError($buffer);
+            $this->io->writeError($buffer, false);
         } else {
             $this->io->write($buffer, false);
         }