1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-10 08:52:39 +01:00

Minor, fix bad conditional.

This commit is contained in:
epriestley 2012-02-03 15:26:13 -08:00
parent c44e8d57a2
commit a83983fe81

View file

@ -986,7 +986,7 @@ EOTEXT
}
$lint_workflow = $this->buildChildWorkflow('lint', $argv);
if (!$this->shouldAmend()) {
if ($this->shouldAmend()) {
// TODO: We should offer to create a checkpoint commit.
$lint_workflow->setShouldAmendChanges(true);
}