This commit is contained in:
2022-01-27 15:21:21 +04:00
parent a6bdab5e49
commit b9fe669dd8
7 changed files with 241 additions and 172 deletions

View File

@@ -1 +1,11 @@
export PATH="$HOME/.cargo/bin:$PATH"
#!/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