Fix message when no composer file is found in a tag
parent
72b7b169e7
commit
bcbdb97cc6
|
@ -118,7 +118,7 @@ class VcsRepository extends ArrayRepository
|
||||||
}
|
}
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
if ($debug) {
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue