1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 22:33:57 +02:00

Merge pull request #7746 from NixOS/backport-7705-to-2.13-maintenance

[Backport 2.13-maintenance] perl: run `initLibStore()` on `openStore()`
This commit is contained in:
Robert Hensing 2023-02-04 13:39:00 +01:00 committed by GitHub
commit 9157f94e77
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();