diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-03-02 13:54:08 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2022-03-02 19:19:51 +0100 |
commit | 54888b92ded6c242ce4914628553d8b2c9c55d10 (patch) | |
tree | 17d530a11628a99bb61434e62a7547c284b23f1e /src/libcmd/command.cc | |
parent | b2da2a22c64a040f3cc83180f636b5fe972c16b1 (diff) |
Move installables-related operations
Diffstat (limited to 'src/libcmd/command.cc')
-rw-r--r-- | src/libcmd/command.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcmd/command.cc b/src/libcmd/command.cc index 6d183dfad..dc8fa9e5a 100644 --- a/src/libcmd/command.cc +++ b/src/libcmd/command.cc @@ -153,7 +153,7 @@ void BuiltPathsCommand::run(ref<Store> store) for (auto & p : store->queryAllValidPaths()) paths.push_back(BuiltPath::Opaque{p}); } else { - paths = toBuiltPaths(getEvalStore(), store, realiseMode, operateOn, installables); + paths = Installable::toBuiltPaths(getEvalStore(), store, realiseMode, operateOn, installables); if (recursive) { // XXX: This only computes the store path closure, ignoring // intermediate realisations |