From 0ff8bfe1d9a3a46ab09ac406f202da759a9be8ba Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 10 Mar 2026 00:44:06 -0400 Subject: [PATCH] sync --- packages/opencode/src/config/config.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/opencode/src/config/config.ts b/packages/opencode/src/config/config.ts index 12d95d11bb..314554b22b 100644 --- a/packages/opencode/src/config/config.ts +++ b/packages/opencode/src/config/config.ts @@ -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) {