fix bug in GitDriver::supports for remote repo
for some reason it does not work (in packagist) without the $output param. I don't get any error message here, maybe someone has an idea, why? Anyway, need this ;)pull/3726/head
parent
020e1c2143
commit
2d9401fb13
|
@ -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