Merge pull request #3726 from davidverholen/patch-1

fix bug in GitDriver::supports for remote repo
main
Jordi Boggiano 10 years ago
commit 1d8f05f1dd

@ -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;
}

Loading…
Cancel
Save