fix(cli): missing plugin deps cause TUI to black screen (#14432)

This commit is contained in:
Matt Silverlock
2026-02-20 07:39:15 -05:00
committed by GitHub
parent a04e4e81fb
commit 93615bef28
2 changed files with 29 additions and 22 deletions

View File

@@ -292,7 +292,9 @@ export namespace Config {
...(proxied() ? ["--no-cache"] : []),
],
{ cwd: dir },
).catch(() => {})
).catch((err) => {
log.warn("failed to install dependencies", { dir, error: err })
})
}
async function isWritable(dir: string) {