Commit 5425dc92 by Carsten Brandt

fixed composer targetdir

parent 831e5115
...@@ -113,10 +113,11 @@ class Installer extends LibraryInstaller ...@@ -113,10 +113,11 @@ class Installer extends LibraryInstaller
$path = $this->vendorDir . '/' . $package->getName() . '/' . $path; $path = $this->vendorDir . '/' . $package->getName() . '/' . $path;
} }
$path = $fs->normalizePath($path); $path = $fs->normalizePath($path);
$targetDir = $package->getTargetDir();
if (strpos($path . '/', $vendorDir . '/') === 0) { 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 { } else {
$aliases["@$name"] = $path . '/' . $name; $aliases["@$name"] = $path . ($targetDir === null ? '': '/' . $targetDir);
} }
} }
return $aliases; return $aliases;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment