Browse Source

Merge pull request #4863 from alcohol/issues-4859

bugfix for issue #4859 - path repo does not update when composer.json is adjusted
Jordi Boggiano 9 years ago
parent
commit
644aa517d5
1 changed files with 2 additions and 3 deletions
  1. 2 3
      src/Composer/Repository/PathRepository.php

+ 2 - 3
src/Composer/Repository/PathRepository.php

@@ -125,17 +125,16 @@ class PathRepository extends ArrayRepository implements ConfigurableRepositoryIn
             $package['dist'] = array(
                 'type' => 'path',
                 'url' => $url,
-                'reference' => '',
+                'reference' => sha1($json),
             );
 
             if (!isset($package['version'])) {
                 $package['version'] = $this->versionGuesser->guessVersion($package, $path) ?: 'dev-master';
             }
+
             $output = '';
             if (is_dir($path . DIRECTORY_SEPARATOR . '.git') && 0 === $this->process->execute('git log -n1 --pretty=%H', $output, $path)) {
                 $package['dist']['reference'] = trim($output);
-            } else {
-                $package['dist']['reference'] = Locker::getContentHash($json);
             }
 
             $package = $this->loader->load($package);