diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2020-09-03 11:26:36 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2020-09-03 11:29:34 +0200 |
commit | 82b77a77262c414044fffc7ad8b955ad91827995 (patch) | |
tree | 9cc018ab54b7fea9a541772a6db2b952555ffe23 /src/nix/bundle.cc | |
parent | 00d25e84577659ccf0bc360c61c47b6cd25d1c26 (diff) |
addPermRoot(): Remove indirect flag
Diffstat (limited to 'src/nix/bundle.cc')
-rw-r--r-- | src/nix/bundle.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/bundle.cc b/src/nix/bundle.cc index eb3339f5d..241c8699b 100644 --- a/src/nix/bundle.cc +++ b/src/nix/bundle.cc @@ -122,7 +122,7 @@ struct CmdBundle : InstallableCommand if (!outLink) outLink = baseNameOf(app.program); - store.dynamic_pointer_cast<LocalFSStore>()->addPermRoot(outPath, absPath(*outLink), true); + store.dynamic_pointer_cast<LocalFSStore>()->addPermRoot(outPath, absPath(*outLink)); } }; |