core: silently ignore proxy command failures to prevent config initialization crashes

pull/9810/head
Dax Raad 2026-02-05 12:47:32 -05:00
parent fba5a79c45
commit 7c748ef089
1 changed files with 1 additions and 1 deletions

View File

@ -274,7 +274,7 @@ export namespace Config {
...(proxied() ? ["--no-cache"] : []),
],
{ cwd: dir },
)
).catch(() => {})
}
async function isWritable(dir: string) {