1
0
Fork 0

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
David Verholen 2015-02-10 13:33:09 +01:00
parent 020e1c2143
commit 2d9401fb13
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;
}