12 lines
300 B
Plaintext
12 lines
300 B
Plaintext
|
#!/bin/sh
|
||
|
# rustup shell setup
|
||
|
# affix colons on either side of $PATH to simplify matching
|
||
|
case ":${PATH}:" in
|
||
|
*:"$HOME/.cargo/bin":*)
|
||
|
;;
|
||
|
*)
|
||
|
# Prepending path in case a system-installed rustc needs to be overridden
|
||
|
export PATH="$HOME/.cargo/bin:$PATH"
|
||
|
;;
|
||
|
esac
|