Browse Source

Add details of the path to aid debugging

Mike van Rooyen 5 years ago
parent
commit
e910e06f63
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Repository/PathRepository.php

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

@@ -128,7 +128,7 @@ class PathRepository extends ArrayRepository implements ConfigurableRepositoryIn
         $urlMatches = $this->getUrlMatches();
         $urlMatches = $this->getUrlMatches();
 
 
         if (empty($urlMatches)) {
         if (empty($urlMatches)) {
-            throw new \RuntimeException('The `url` supplied for the path repository does not exist');
+            throw new \RuntimeException('The `url` supplied for the path (' . $this->url . ') repository does not exist');
         }
         }
 
 
         foreach ($urlMatches as $url) {
         foreach ($urlMatches as $url) {