aboutsummaryrefslogtreecommitdiff
path: root/src/nix/command.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix/command.cc')
-rw-r--r--src/nix/command.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/nix/command.cc b/src/nix/command.cc
index 5a8288da9..a1b2c120a 100644
--- a/src/nix/command.cc
+++ b/src/nix/command.cc
@@ -79,9 +79,14 @@ StoreCommand::StoreCommand()
mkFlag(0, "store", "store-uri", "URI of the Nix store to use", &storeUri);
}
+ref<Store> StoreCommand::createStore()
+{
+ return openStore(storeUri);
+}
+
void StoreCommand::run()
{
- run(openStore(storeUri));
+ run(createStore());
}
StorePathsCommand::StorePathsCommand()