fix: add ~/.local/bin to PATH for uv tool binaries (#78)

This commit is contained in:
Mariano Belinky
2026-01-03 22:19:40 +01:00
committed by Peter Steinberger
parent 3d39e2ad75
commit d88581eb7c

View File

@@ -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"));