1
0
Fork 0

Fix message when no composer file is found in a tag

pull/473/merge
Jordi Boggiano 2012-03-18 23:02:46 +01:00
parent 72b7b169e7
commit bcbdb97cc6
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ class VcsRepository extends ArrayRepository
}
} catch (\Exception $e) {
if ($debug) {
$this->io->write('Skipped tag '.$tag.', '.$e->getMessage());
$this->io->write('Skipped tag '.$tag.', '.($e instanceof TransportException ? 'no composer file was found' : $e->getMessage()));
}
continue;
}