diff options
Diffstat (limited to 'src/nix-env/main.cc')
-rw-r--r-- | src/nix-env/main.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/nix-env/main.cc b/src/nix-env/main.cc index a9f343870..4f0b5eca9 100644 --- a/src/nix-env/main.cc +++ b/src/nix-env/main.cc @@ -943,7 +943,6 @@ static void opSwitchProfile(Globals & globals, Path profile = opArgs.front(); Path profileLink = getHomeDir() + "/.nix-profile"; - SwitchToOriginalUser sw; switchLink(profileLink, profile); } @@ -1092,7 +1091,6 @@ static void opDefaultExpr(Globals & globals, Path defNixExpr = absPath(opArgs.front()); Path defNixExprLink = getDefNixExprPath(); - SwitchToOriginalUser sw; switchLink(defNixExprLink, defNixExpr); } @@ -1196,7 +1194,6 @@ void run(Strings args) if (!op) throw UsageError("no operation specified"); if (globals.profile == "") { - SwitchToOriginalUser sw; Path profileLink = getHomeDir() + "/.nix-profile"; globals.profile = pathExists(profileLink) ? absPath(readLink(profileLink), dirOf(profileLink)) |