Skip to content

Commit 7e301fd

Browse files
authored
Merge pull request #6620 from maralorn/fix-print-missing
respect print-missing variable in new-style build command
2 parents 63df0fd + bf2f25e commit 7e301fd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/libcmd/installables.cc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -920,6 +920,9 @@ std::vector<std::pair<std::shared_ptr<Installable>, BuiltPath>> Installable::bui
920920
break;
921921

922922
case Realise::Outputs: {
923+
if (settings.printMissing)
924+
printMissing(store, pathsToBuild, lvlInfo);
925+
923926
for (auto & buildResult : store->buildPathsWithResults(pathsToBuild, bMode, evalStore)) {
924927
if (!buildResult.success())
925928
buildResult.rethrow();

0 commit comments

Comments
 (0)