Merge pull request #3726 from davidverholen/patch-1
fix bug in GitDriver::supports for remote repopull/3736/merge
commit
1d8f05f1dd
|
@ -242,7 +242,7 @@ class GitDriver extends VcsDriver
|
||||||
}
|
}
|
||||||
|
|
||||||
$process = new ProcessExecutor($io);
|
$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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue