1
0
Fork 0
pull/239/head
digitalkaoz 2012-01-20 20:50:21 +01:00
parent 0dc3832225
commit 627deab51c
1 changed files with 3 additions and 1 deletions

View File

@ -180,7 +180,9 @@ class SvnDriver extends VcsDriver implements VcsDriverInterface
return false;
}
$exit = $this->process->execute(sprintf('svn info --non-interactive %s 2>/dev/null', escapeshellarg($url)), $ignored);
$processExecutor = new ProcessExecutor();
$exit = $processExecutor->execute(sprintf('svn info --non-interactive %s 2>/dev/null', escapeshellarg($url)), $ignored);
return $exit === 0;
}
}