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
They append to ~/.zshenv and/or ~/.profile the following:
."$HOME/.cargo/env"
and then include this script, ~/.cargo/env:
#!/bin/sh# rustup shell setup# affix colons on either side of $PATH to simplify matchingcase":${PATH}:"in*:"$HOME/.cargo/bin":*)
;;
*)
# Prepending path in case a system-installed rustc needs to be overriddenexport PATH="$HOME/.cargo/bin:$PATH"
;;
esac
This seems reasonable to me.
The text was updated successfully, but these errors were encountered:
We can follow what Cargo does here.
They append to
~/.zshenv
and/or~/.profile
the following:and then include this script,
~/.cargo/env
:This seems reasonable to me.
The text was updated successfully, but these errors were encountered: