From 4a10850759942d75aef21f879182d60782eae261 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Sat, 24 Dec 2011 14:17:02 +0100 Subject: [PATCH] Fix output --- src/Composer/Installer/LibraryInstaller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Installer/LibraryInstaller.php b/src/Composer/Installer/LibraryInstaller.php index c42c5beaf..d9d7ddd76 100644 --- a/src/Composer/Installer/LibraryInstaller.php +++ b/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;