Get the new bypy based freezing process working with linux builds

This commit is contained in:
Kovid Goyal
2021-02-17 15:50:53 +05:30
parent 4cf73204a2
commit 9114bda24c
9 changed files with 252 additions and 94 deletions

View File

@@ -257,7 +257,7 @@ def load_config(
try:
with open(path, encoding='utf-8', errors='replace') as f:
vals = parse_config(f)
except FileNotFoundError:
except (FileNotFoundError, PermissionError):
continue
ans = merge_configs(ans, vals)
if overrides is not None: