Fix output
parent
5c8eb355ce
commit
4a10850759
|
@ -136,7 +136,7 @@ class LibraryInstaller implements InstallerInterface
|
||||||
foreach ($package->getBinaries() as $bin) {
|
foreach ($package->getBinaries() as $bin) {
|
||||||
$link = $this->binDir.'/'.basename($bin);
|
$link = $this->binDir.'/'.basename($bin);
|
||||||
if (file_exists($link)) {
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
$bin = $this->getInstallPath($package).'/'.$bin;
|
$bin = $this->getInstallPath($package).'/'.$bin;
|
||||||
|
|
Loading…
Reference in New Issue