Add option to hide display of missing paths

This commit is contained in:
Eelco Dolstra 2015-03-04 15:43:04 +01:00
parent 75ede65e3d
commit 71b0a3a86b

View file

@ -140,7 +140,8 @@ static void opRealise(Strings opFlags, Strings opArgs)
unknown = PathSet(); unknown = PathSet();
} }
printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize); if (settings.get("print-missing", true))
printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize);
if (dryRun) return; if (dryRun) return;