From 3c918374a810922a43ad40922f9a4e43467c7b5e Mon Sep 17 00:00:00 2001 From: anish Date: Mon, 17 Aug 2026 09:51:55 +0000 Subject: [PATCH] Remove stale node_modules path from CLI installation locations The `find_installed_cli()` function in `scripts/download_cli.py` included a reference to `Path.home() / "node_modules" / ".bin" / "cli"` as a Unix installation location. This path is not used by the official CLI installer and does not match the installation paths documented in `.github/workflows/test.yml`, which only uses `$HOME/.local/bin` for Linux/macOS and `$USERPROFILE\.local\bin` for Windows. Signed-off-by: anish --- scripts/download_cli.py | 1 - 1 file changed, 1 deletion(-) mode change 100755 => 100644 scripts/download_cli.py diff --git a/scripts/download_cli.py b/scripts/download_cli.py old mode 100755 new mode 100644 index c0ac39a75..4e594b367 --- a/scripts/download_cli.py +++ b/scripts/download_cli.py @@ -77,7 +77,6 @@ def find_installed_cli() -> Path | None: locations = [ Path.home() / ".local" / "bin" / "claude", Path("/usr/local/bin/claude"), - Path.home() / "node_modules" / ".bin" / "claude", ] # Also check PATH