diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2019-10-21 18:48:21 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2019-10-21 18:48:21 +0200 |
commit | 9a18f544ac09c3a40e9a87c166edd878a1368c6f (patch) | |
tree | 9a2dcd0d4545f46c2c3e3930239f9a503903db19 /src/nix/command.cc | |
parent | b82f75464d1e5ae9a00d8004e5dd7b1ca05059e4 (diff) | |
parent | 629b9b0049363e091b76b7f60a8357d9f94733cc (diff) |
Merge remote-tracking branch 'origin/master' into flakes
Diffstat (limited to 'src/nix/command.cc')
-rw-r--r-- | src/nix/command.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nix/command.cc b/src/nix/command.cc index 9cca443dc..57f3754cc 100644 --- a/src/nix/command.cc +++ b/src/nix/command.cc @@ -58,7 +58,7 @@ void StorePathsCommand::run(ref<Store> store) } else { - for (auto & p : toStorePaths(store, NoBuild, installables)) + for (auto & p : toStorePaths(store, realiseMode, installables)) storePaths.push_back(p); if (recursive) { |