From 39cb8647b0aa42a23bac57b6e74112235e62cde0 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"));