fix(install): wire ~/.bashrc on Windows for Git Bash / Claude Code#46
Open
MasonStation wants to merge 1 commit intomainfrom
Open
fix(install): wire ~/.bashrc on Windows for Git Bash / Claude Code#46MasonStation wants to merge 1 commit intomainfrom
MasonStation wants to merge 1 commit intomainfrom
Conversation
Windows User PATH is only inherited by Git Bash at shell-start time, so already-running bash sessions (Claude Code on Windows shells out through Git Bash) don't see the new ~/.phantom-secrets/bin entry until restart. After updating Windows User PATH, also append an idempotent `export PATH=...` to ~/.bashrc with the unix-style path, so a fresh Git Bash session picks phantom up without restart-and-restart-again. Mirrors the same fix already shipped in ashlr-stack's installer. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
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
ashlr-stack's installer.export PATH=...to~/.bashrcwith the unix-style path so Git Bash picksphantomup on next session-start instead of requiring a full terminal + Claude Code restart.scripts/install.ps1andapps/web/public/install.ps1updated; copies are byte-identical.Why now
Running
irm https://phm.dev/install.ps1 | iexfrom inside Claude Code on Windows installs phantom successfully, but the Claude Code bash session (and any open Git Bash) keeps reporting 'phantom not on PATH' until restart. The bashrc mirror eliminates that friction for the common case.Test plan
irm https://phm.dev/install.ps1 | iexin a fresh Windows VM, verify~/.bashrcblock appendedwhich phantomresolves without User PATH propagation race🤖 Generated with Claude Code