1
0
Fork 0
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:
Jordi Boggiano 2012-11-05 12:23:08 +01:00
parent 967c771b26
commit 61bd34df55

View file

@ -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;
} }
} }