From 7a108d904e9d3bb9ef94487c37b35a050c315a52 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 31 Aug 2017 17:57:04 +0200 Subject: Fix verbosity level for nix build --dry-run --- src/nix/build.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nix/build.cc') diff --git a/src/nix/build.cc b/src/nix/build.cc index cc96ac48a977..4239dd3fff9d 100644 --- a/src/nix/build.cc +++ b/src/nix/build.cc @@ -25,7 +25,7 @@ struct CmdBuild : MixDryRun, InstallablesCommand { auto paths = toStorePaths(store, dryRun ? DryRun : Build); - printInfo("build result: %s", showPaths(paths)); + printError("build result: %s", showPaths(paths)); } }; -- cgit 1.4.1