Hopefully fixing a bug where reporting errors back to Github causes an infinite loop.
This commit is contained in:
parent
bfc56a753d
commit
ab4396e00d
2 changed files with 6 additions and 2 deletions
|
|
@ -211,7 +211,7 @@ class GithubBuild extends RemoteGitBuild
|
|||
} else {
|
||||
$commitId = $this->getCommitId();
|
||||
$compare = $commitId == 'Manual' ? 'HEAD' : $commitId;
|
||||
$builder->executeCommand('cd %s && git diff %s^! "%s"', $path, $compare, $file);
|
||||
$builder->executeCommand('cd %s && git diff %s^^ "%s"', $path, $compare, $file);
|
||||
}
|
||||
|
||||
$builder->logExecOutput(true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue