diff --git a/src/infra/path-env.ts b/src/infra/path-env.ts index 6770079a0..8279299c1 100644 --- a/src/infra/path-env.ts +++ b/src/infra/path-env.ts @@ -79,6 +79,7 @@ function candidateBinDirs(opts: EnsureClawdisPathOpts): string[] { if (platform === "darwin") { candidates.push(path.join(homeDir, "Library", "pnpm")); } + candidates.push(path.join(homeDir, ".local", "bin")); candidates.push(path.join(homeDir, ".local", "share", "pnpm")); candidates.push(path.join(homeDir, ".bun", "bin")); candidates.push(path.join(homeDir, ".yarn", "bin"));