Przeglądaj źródła

Do not add newlines for errors

Dries Vints 8 lat temu
rodzic
commit
58b27289d0
1 zmienionych plików z 1 dodań i 1 usunięć
  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);
         }