diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2023-03-15 17:23:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-15 17:23:40 -0400 |
commit | eb56cb7cc7fa9fb58e2d9dc0322375da23b0eb65 (patch) | |
tree | be3dafde2c0cb469b5cef284ef0d8853a18786c6 /src/nix/bundle.cc | |
parent | 0a140a92bb6ccfd0d84465f37e6561900a48f490 (diff) | |
parent | bc23a44c54510c23dcbba030c39e8a1f3169c869 (diff) |
Merge pull request #7750 from obsidiansystems/no-args-prepare
Make command infra less stateful and more regular
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 dcf9a6f2d..973bbd423 100644 --- a/src/nix/bundle.cc +++ b/src/nix/bundle.cc @@ -70,7 +70,7 @@ struct CmdBundle : InstallableCommand return res; } - void run(ref<Store> store) override + void run(ref<Store> store, ref<Installable> installable) override { auto evalState = getEvalState(); |