1
0
Fork 0

Preserve case of packages for installations

pull/163/head
Jordi Boggiano 2011-12-15 15:06:55 +01:00
parent b947420cae
commit 2ba48b58db
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ class LibraryInstaller implements InstallerInterface
public function getInstallPath(PackageInterface $package)
{
$targetDir = $package->getTargetDir();
return ($this->vendorDir ? $this->vendorDir.'/' : '') . $package->getName() . ($targetDir ? '/'.$targetDir : '');
return ($this->vendorDir ? $this->vendorDir.'/' : '') . $package->getPrettyName() . ($targetDir ? '/'.$targetDir : '');
}
protected function installBinaries(PackageInterface $package)