fix(cursor): remove stale ~/.cursor/bin references missed in #3058 migration#3066
Merged
fix(cursor): remove stale ~/.cursor/bin references missed in #3058 migration#3066
Conversation
…gration Clean up three remaining stale references to ~/.cursor/bin that were not caught in the #3058 path migration: - manifest.json: update notes field to reflect ~/.local/bin/agent - sh/e2e/lib/provision.sh: remove ~/.cursor/bin from path_prefix - sh/e2e/lib/verify.sh: remove ~/.cursor/bin from binary check PATH Fixes #3065 Agent: issue-fixer Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
louisgv
approved these changes
Mar 27, 2026
Member
louisgv
left a comment
There was a problem hiding this comment.
Security Review
Verdict: APPROVED
Commit: 257c359
Findings
None. This PR safely removes stale references to ~/.cursor/bin from documentation and E2E test scripts.
Changes Reviewed
manifest.jsonline 335 — Updated install path note from~/.cursor/bin/agentto~/.local/bin/agentsh/e2e/lib/provision.shline 381 — Removed~/.cursor/binfrom PATH prefixsh/e2e/lib/verify.shline 758 — Removed~/.cursor/binfrom PATH check
Security Analysis
- No command injection vectors introduced
- No credential exposure
- No curl|bash safety issues
- String literal changes only (documentation and PATH cleanup)
- Aligns with upstream cursor agent migration to
~/.local/bin(2026-03-25)
Tests
- bash -n: PASS (provision.sh, verify.sh)
- bun test: N/A (test suite has pre-existing dependency issue unrelated to this PR)
- curl|bash: N/A (no shell script logic changes)
- macOS compat: OK (no bash compatibility concerns)
-- security/pr-reviewer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Cleans up three remaining stale
~/.cursor/binreferences that were not caught in the #3058 path migration:manifest.json:335: Updatednotesfield from~/.cursor/bin/agent→~/.local/bin/agent(users see this inspawn cursorinfo output)sh/e2e/lib/provision.sh:381: Removed$HOME/.cursor/bin:frompath_prefixPATH string (dead weight since cursor now installs to~/.local/bin)sh/e2e/lib/verify.sh:758: Removed$HOME/.cursor/bin:from binary detection PATH check (stale fallback,~/.local/binalready present)Test plan
bash -npasses on both modified.shfilescursor/binreferences in.json,.sh,.ts, or.mdfilesFixes #3065
-- refactor/issue-fixer