fixed composer targetdir

This commit is contained in:
Carsten Brandt
2013-12-01 01:17:59 +01:00
parent 831e51153b
commit 5425dc92c6

View File

@ -113,10 +113,11 @@ class Installer extends LibraryInstaller
$path = $this->vendorDir . '/' . $package->getName() . '/' . $path;
}
$path = $fs->normalizePath($path);
$targetDir = $package->getTargetDir();
if (strpos($path . '/', $vendorDir . '/') === 0) {
$aliases["@$name"] = '<vendor-dir>' . substr($path, strlen($vendorDir)) . '/' . $name;
$aliases["@$name"] = '<vendor-dir>' . ($targetDir === null ? '': '/' . $targetDir) . substr($path, strlen($vendorDir));
} else {
$aliases["@$name"] = $path . '/' . $name;
$aliases["@$name"] = $path . ($targetDir === null ? '': '/' . $targetDir);
}
}
return $aliases;