From dabf46d65d8e3be80fa2eacd229eb3e621add4bd Mon Sep 17 00:00:00 2001 From: Bouke van der Bijl Date: Mon, 27 Feb 2023 16:39:07 +0100 Subject: [PATCH] Call initLibStore before opening store (#23) --- cbits/nix.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cbits/nix.cpp b/cbits/nix.cpp index 802147d..8872af1 100644 --- a/cbits/nix.cpp +++ b/cbits/nix.cpp @@ -14,6 +14,7 @@ static ref getStore() static std::shared_ptr _store; if (!_store) { + initLibStore(); loadConfFile(); _store = openStore();