1
0
Fork 0

Merge pull request #3726 from davidverholen/patch-1

fix bug in GitDriver::supports for remote repo
pull/3736/merge
Jordi Boggiano 2015-02-11 11:31:57 +00:00
commit 1d8f05f1dd
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class GitDriver extends VcsDriver
}
$process = new ProcessExecutor($io);
if($process->execute('git ls-remote --heads ' . ProcessExecutor::escape($url)) === 0) {
if($process->execute('git ls-remote --heads ' . ProcessExecutor::escape($url), $output) === 0) {
return true;
}