forked from lix-project/lix
parent
3d2d207aad
commit
aa02cdc33c
|
@ -896,7 +896,11 @@ std::list<ref<Store>> getDefaultSubstituters()
|
||||||
auto addStore = [&](const std::string & uri) {
|
auto addStore = [&](const std::string & uri) {
|
||||||
if (done.count(uri)) return;
|
if (done.count(uri)) return;
|
||||||
done.insert(uri);
|
done.insert(uri);
|
||||||
|
try {
|
||||||
stores.push_back(openStore(uri));
|
stores.push_back(openStore(uri));
|
||||||
|
} catch (Error & e) {
|
||||||
|
printError("warning: %s", e.what());
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
for (auto uri : settings.substituters.get())
|
for (auto uri : settings.substituters.get())
|
||||||
|
|
Loading…
Reference in a new issue