Merge pull request #7705 from Ma27/fix-initNix-in-perl-bindings

perl: run `initLibStore()` on `openStore()`
This commit is contained in:
Robert Hensing 2023-02-03 23:33:41 +01:00 committed by GitHub
commit 895dfc656a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,6 +26,7 @@ static ref<Store> store()
static std::shared_ptr<Store> _store;
if (!_store) {
try {
initLibStore();
loadConfFile();
settings.lockCPU = false;
_store = openStore();