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
Installing rustup via the bash command messed up my .bash_profile.
The installer truncated the line [ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env" to [ -f "$HOME/.cargo/env" ] && (which is now applying the conditional to some unrelated line) and then appended . "$HOME/.cargo/env" to the end of the file.
Here it is as a patch, my original file in red(-) and the rustup installer's modifications in green(+):
Add this line to the start of your .bash_profile: [ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env"
Install rustup via bash: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
That line has been modified ... poorly. now the conditional is mistakenly applied to whatever the next line is, and the source line has been moved the end of the file.
Possible Solution(s)
I wish the installer wouldn't try to modify lines it doesn't understand.
Notes
No response
Rustup version
rustup 1.24.3 (ce5817a94 2021-05-31)info: This is the version for the rustup toolchain manager, not the rustc compiler.info: The currently active `rustc` version is `rustc 1.59.0 (9d1b2106e 2022-02-23)`
So the reason your .zshrc is left alone is because we edit .zshenv not .zshrc.
The reason that we mess up that line is because we're not checking that there's nothing before the command we "remove" when we are executing cleanup on the rc files.
@kinnison I noticed it defaults to .zshenv even on a Mac, which is known to have unexpected behavior that overrides the file. The zshenv file is more for putting personal configuration to run at the very start of shells (interactive and non-interactive).
At least on a Mac, the 'env' in zshenv misleading and ~/.zprofile is a better place to do PATH initialization.
Problem
Installing rustup via the bash command messed up my .bash_profile.
The installer truncated the line
[ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env"
to[ -f "$HOME/.cargo/env" ] &&
(which is now applying the conditional to some unrelated line) and then appended. "$HOME/.cargo/env"
to the end of the file.Here it is as a patch, my original file in red(-) and the rustup installer's modifications in green(+):
Steps
[ -f "$HOME/.cargo/env" ] && source "$HOME/.cargo/env"
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
source
line has been moved the end of the file.Possible Solution(s)
I wish the installer wouldn't try to modify lines it doesn't understand.
Notes
No response
Rustup version
Installed toolchains
The text was updated successfully, but these errors were encountered: