瀏覽代碼

Fix output

Jordi Boggiano 13 年之前
父節點
當前提交
4a10850759
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Composer/Installer/LibraryInstaller.php

+ 1 - 1
src/Composer/Installer/LibraryInstaller.php

@@ -136,7 +136,7 @@ class LibraryInstaller implements InstallerInterface
         foreach ($package->getBinaries() as $bin) {
             $link = $this->binDir.'/'.basename($bin);
             if (file_exists($link)) {
-                echo 'Skipped installation of '.$bin.' for package '.$package->getName().', name conflicts with an existing file';
+                echo 'Skipped installation of '.$bin.' for package '.$package->getName().', name conflicts with an existing file'.PHP_EOL;
                 continue;
             }
             $bin = $this->getInstallPath($package).'/'.$bin;