Parcourir la source

Store correct url for package, not original url containing wildcards.

Dennis Birkholz il y a 10 ans
Parent
commit
4209fd2e4a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/Composer/Repository/PathRepository.php

+ 1 - 1
src/Composer/Repository/PathRepository.php

@@ -107,7 +107,7 @@ class PathRepository extends ArrayRepository
             $package = JsonFile::parseJson($json, $composerFilePath);
             $package['dist'] = array(
                 'type' => 'path',
-                'url' => $this->url,
+                'url' => $path,
                 'reference' => '',
             );