about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libstore/store-api.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc
index f9c8767709e7..9f72bbd83ea3 100644
--- a/src/libstore/store-api.cc
+++ b/src/libstore/store-api.cc
@@ -323,9 +323,11 @@ namespace nix {
 ref<Store> openStoreAt(const std::string & uri, bool reserveSpace)
 {
     if (std::string(uri, 0, 7) == "file://") {
-        return make_ref<LocalBinaryCacheStore>(std::shared_ptr<Store>(0),
+        auto store = make_ref<LocalBinaryCacheStore>(std::shared_ptr<Store>(0),
             "", "", // FIXME: allow the signing key to be set
             std::string(uri, 7));
+        store->init();
+        return store;
     }
 
     enum { mDaemon, mLocal, mAuto } mode;