From 71b0a3a86bfd24b2a39df9b5f03b22d9faee64e8 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 4 Mar 2015 15:43:04 +0100 Subject: [PATCH] Add option to hide display of missing paths --- src/nix-store/nix-store.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/nix-store/nix-store.cc b/src/nix-store/nix-store.cc index 7ce5f63c2..7baaa80ef 100644 --- a/src/nix-store/nix-store.cc +++ b/src/nix-store/nix-store.cc @@ -140,7 +140,8 @@ static void opRealise(Strings opFlags, Strings opArgs) unknown = PathSet(); } - printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize); + if (settings.get("print-missing", true)) + printMissing(willBuild, willSubstitute, unknown, downloadSize, narSize); if (dryRun) return;