From d88581eb7cfa0c307e03edf4aeafa7cce3d049f8 Mon Sep 17 00:00:00 2001 From: Mariano Belinky Date: Sat, 3 Jan 2026 22:19:40 +0100 Subject: [PATCH] fix: add ~/.local/bin to PATH for uv tool binaries (#78) --- src/infra/path-env.ts | 1 + 1 file changed, 1 insertion(+) 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"));