mirror of
https://github.com/composer/composer
synced 2025-05-09 08:32:56 +00:00
Make sure error output is clearly visible
This commit is contained in:
parent
967c771b26
commit
61bd34df55
1 changed files with 4 additions and 0 deletions
|
@ -231,7 +231,11 @@ class VcsRepository extends ArrayRepository
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
} catch (\Exception $e) {
|
} catch (\Exception $e) {
|
||||||
|
if (!$verbose) {
|
||||||
|
$this->io->write('');
|
||||||
|
}
|
||||||
$this->io->write('Skipped branch '.$branch.', '.$e->getMessage());
|
$this->io->write('Skipped branch '.$branch.', '.$e->getMessage());
|
||||||
|
$this->io->write('');
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue