getDefaultNixPath: ignore EPERM

This commit is contained in:
Yorick 2023-05-11 13:44:16 +02:00
parent b7cde90c6b
commit a6c78ba367
No known key found for this signature in database
GPG key ID: D8D3CC6D951384DE

View file

@ -2620,12 +2620,17 @@ Strings EvalSettings::getDefaultNixPath()
{
Strings res;
auto add = [&](const Path & p, const std::string & s = std::string()) {
if (pathExists(p)) {
if (s.empty()) {
res.push_back(p);
} else {
res.push_back(s + "=" + p);
try {
if (pathExists(p)) {
if (s.empty()) {
res.push_back(p);
} else {
res.push_back(s + "=" + p);
}
}
} catch (SysError & e) {
// swallow EPERM
if (e.errNo != EPERM) throw;
}
};