浏览代码

Merge pull request #2637 from MeKeyCool/master

bug fix with install / remove source codes
Nils Adermann 11 年之前
父节点
当前提交
50cf2ffba7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Composer/Installer/LibraryInstaller.php

+ 1 - 1
src/Composer/Installer/LibraryInstaller.php

@@ -178,7 +178,7 @@ class LibraryInstaller implements InstallerInterface
 
     protected function removeCode(PackageInterface $package)
     {
-        $downloadPath = $this->getPackageBasePath($package);
+        $downloadPath = $this->getInstallPath($package);
         $this->downloadManager->remove($package, $downloadPath);
     }