You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing the Solana CLI (via sh -c "$(curl -sSfL https://release.anza.xyz/stable/install)"), the program assumes the user is using bash, and appends export PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH" to .bash_profile even if the user does not use bash. (Found this issue while installing using the fish shell).
Proposed Solution
If the current $SHELL isn't bash, simply tell the user to add the path manually
If the current $SHELL is another common shell like fish, zsh, etc, properly add the path to the relevant config file, PREFERABLY asking the user if they would like their config file automatically edited (this may be undesired behavior!)
The text was updated successfully, but these errors were encountered:
Problem
When installing the Solana CLI (via
sh -c "$(curl -sSfL https://release.anza.xyz/stable/install)"
), the program assumes the user is usingbash
, and appendsexport PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH"
to.bash_profile
even if the user does not use bash. (Found this issue while installing using thefish
shell).Proposed Solution
$SHELL
isn't bash, simply tell the user to add the path manually$SHELL
is another common shell likefish
,zsh
, etc, properly add the path to the relevant config file, PREFERABLY asking the user if they would like their config file automatically edited (this may be undesired behavior!)The text was updated successfully, but these errors were encountered: