From 30f89e0d6564394747e20e04d486b81aeec96752 Mon Sep 17 00:00:00 2001 From: Will Dietz Date: Wed, 5 Apr 2017 07:34:10 -0500 Subject: Process nix.conf options in "new" nix commands, add test. Without this (minor) change, the options set using "--option" or read from nix.conf were parsed but not used. --- src/nix/main.cc | 1 + 1 file changed, 1 insertion(+) (limited to 'src/nix/main.cc') diff --git a/src/nix/main.cc b/src/nix/main.cc index 440ced97dfcc..fdb8f6e3a197 100644 --- a/src/nix/main.cc +++ b/src/nix/main.cc @@ -42,6 +42,7 @@ void mainWrapped(int argc, char * * argv) NixArgs args; args.parseCmdline(argvToStrings(argc, argv)); + settings.update(); assert(args.command); -- cgit 1.4.1