1
0
Fork 0

Merge pull request #239 from digitalkaoz/issue_230

fixed #230
pull/235/merge
Jordi Boggiano 2012-01-21 11:26:03 -08:00
commit feedac8a89
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;
}
}