We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d308cc commit f039f68Copy full SHA for f039f68
src/nix-build/nix-build.cc
@@ -420,12 +420,8 @@ static void main_nix_build(int argc, char * * argv)
420
state->maybePrintStats();
421
422
auto buildPaths = [&](const std::vector<DerivedPath> & paths) {
423
- /* Note: we do this even when !printMissing to efficiently
424
- fetch binary cache data. */
425
- auto missing = store->queryMissing(paths);
426
-
427
if (settings.printMissing)
428
- printMissing(ref<Store>(store), missing);
+ printMissing(ref<Store>(store), paths);
429
430
if (!dryRun)
431
store->buildPaths(paths, buildMode, evalStore);
0 commit comments