Make sure error output is clearly visible
parent
967c771b26
commit
61bd34df55
|
@ -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…
Reference in New Issue