From 92bc72a90b1d8826cd215b7a03a139a493a41769 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Tue, 17 Mar 2026 16:05:51 +0900 Subject: [PATCH] fix(bun-install): use workspaceDir option instead of hardcoded cache-dir --- src/cli/config-manager/bun-install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/config-manager/bun-install.ts b/src/cli/config-manager/bun-install.ts index f5e039954..1ef20dc08 100644 --- a/src/cli/config-manager/bun-install.ts +++ b/src/cli/config-manager/bun-install.ts @@ -67,7 +67,7 @@ function logCapturedOutputOnFailure(outputMode: BunInstallOutputMode, output: Bu export async function runBunInstallWithDetails(options?: RunBunInstallOptions): Promise { const outputMode = options?.outputMode ?? "pipe" - const cacheDir = getOpenCodeCacheDir() + const cacheDir = options?.workspaceDir ?? getOpenCodeCacheDir() const packageJsonPath = `${cacheDir}/package.json` if (!existsSync(packageJsonPath)) {