1
0
Fork 0

Make sure error output is clearly visible

pull/1288/head
Jordi Boggiano 2012-11-05 12:23:08 +01:00
parent 967c771b26
commit 61bd34df55
1 changed files with 4 additions and 0 deletions

View File

@ -231,7 +231,11 @@ class VcsRepository extends ArrayRepository
}
continue;
} catch (\Exception $e) {
if (!$verbose) {
$this->io->write('');
}
$this->io->write('Skipped branch '.$branch.', '.$e->getMessage());
$this->io->write('');
continue;
}
}