pull/16961/head
Dax Raad 2026-03-10 00:44:06 -04:00
parent ceb79c786a
commit 0ff8bfe1d9
1 changed files with 3 additions and 1 deletions

View File

@ -287,7 +287,9 @@ export namespace Config {
// Install any additional dependencies defined in the package.json
// This allows local plugins and custom tools to use external packages
await Npm.install(dir)
await Npm.install(dir).catch((err: any) => {
log.warn("failed to install dependencies", { dir, error: err.message })
})
}
async function isWritable(dir: string) {