diff options
Diffstat (limited to 'src/nix-env')
-rw-r--r-- | src/nix-env/nix-env.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nix-env/nix-env.cc b/src/nix-env/nix-env.cc index 10b95dad168c..5cf41e844e83 100644 --- a/src/nix-env/nix-env.cc +++ b/src/nix-env/nix-env.cc @@ -1423,6 +1423,8 @@ int main(int argc, char * * argv) if (!op) throw UsageError("no operation specified"); + store = openStore(); + globals.state = std::shared_ptr<EvalState>(new EvalState(searchPath)); globals.state->repair = repair; @@ -1441,8 +1443,6 @@ int main(int argc, char * * argv) : canonPath(settings.nixStateDir + "/profiles/default"); } - store = openStore(); - op(globals, opFlags, opArgs); globals.state->printStats(); |