Skip to content

Commit

Permalink
Merge pull request #6620 from maralorn/fix-print-missing
Browse files Browse the repository at this point in the history
respect print-missing variable in new-style build command
  • Loading branch information
thufschmitt authored Jun 16, 2022
2 parents 63df0fd + bf2f25e commit 7e301fd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/libcmd/installables.cc
Original file line number Diff line number Diff line change
Expand Up @@ -920,6 +920,9 @@ std::vector<std::pair<std::shared_ptr<Installable>, BuiltPath>> Installable::bui
break;

case Realise::Outputs: {
if (settings.printMissing)
printMissing(store, pathsToBuild, lvlInfo);

for (auto & buildResult : store->buildPathsWithResults(pathsToBuild, bMode, evalStore)) {
if (!buildResult.success())
buildResult.rethrow();
Expand Down

0 comments on commit 7e301fd

Please sign in to comment.