1
0
Fork 0

removed needless output param

pull/3691/head
brandung GmbH & Co. KG 2015-01-29 20:00:49 +01:00
parent 50d068b977
commit d650f05ddf
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), $output) === 0) {
if($process->execute('git ls-remote --heads ' . ProcessExecutor::escape($url)) === 0) {
return true;
}