瀏覽代碼

Packages can't be added to two repos at once

Jordi Boggiano 13 年之前
父節點
當前提交
544067ced9
共有 2 個文件被更改,包括 6 次插入1 次删除
  1. 1 1
      src/Composer/Installer/LibraryInstaller.php
  2. 5 0
      src/Composer/Package/BasePackage.php

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

@@ -81,7 +81,7 @@ class LibraryInstaller implements InstallerInterface
         $downloadPath = $this->directory.DIRECTORY_SEPARATOR.$package->getName();
 
         $this->downloadManager->download($package, $downloadPath);
-        $this->repository->addPackage($package);
+        $this->repository->addPackage(clone $package);
     }
 
     /**

+ 5 - 0
src/Composer/Package/BasePackage.php

@@ -153,4 +153,9 @@ abstract class BasePackage implements PackageInterface
     {
         return $this->getUniqueName();
     }
+
+    public function __clone()
+    {
+        $this->repository = null;
+    }
 }