1
0
Fork 0

catch all failures

pull/410/head
till 2012-03-12 17:24:36 +01:00
parent 364e9613ad
commit 96298a33dc
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
);
// this could be any failure
if ($status == 1 && $this->io->isInteractive()) {
if ($status > 0 && $this->io->isInteractive()) {
// the error is not auth-related
if (strpos($output, 'authorization failed:') === false) {