Skip to content

Commit

Permalink
Merge pull request NixOS#707 from basvandijk/fix-aggregate-status
Browse files Browse the repository at this point in the history
Fix printing aggregate status
  • Loading branch information
edolstra authored Apr 1, 2020
2 parents 6c0bb90 + bd9b656 commit 8564089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/root/build.tt
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ END;
IF b.finished && b.buildstatus != 0; nrFailedConstituents = nrFailedConstituents + 1; END;
END;
%];
[%+ IF nrFinished == nrMembers && nrFailedConstituents == 0 %]
[%+ IF nrFinished == nrConstituents && nrFailedConstituents == 0 %]
all [% nrConstituents %] constituent builds succeeded
[% ELSE %]
[% nrFailedConstituents %] out of [% nrConstituents %] constituent builds failed
Expand Down

0 comments on commit 8564089

Please sign in to comment.