From 242df060c71cf3f175543d4ee9e743ec48f5f579 Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 21 Aug 2012 16:04:19 +0200 Subject: [PATCH] Clarify exception message --- src/Composer/Repository/VcsRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Repository/VcsRepository.php b/src/Composer/Repository/VcsRepository.php index 1399bed73..c6f644388 100644 --- a/src/Composer/Repository/VcsRepository.php +++ b/src/Composer/Repository/VcsRepository.php @@ -228,7 +228,7 @@ class VcsRepository extends ArrayRepository $this->io->overwrite('', false); if (!$this->getPackages()) { - throw new \RuntimeException('No composer.json was found in any branch or tag of '.$this->url.', could not load a package from it.'); + throw new \RuntimeException('No valid composer.json was found in any branch or tag of '.$this->url.', could not load a package from it.'); } }