mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-02-14 09:39:51 +00:00
16 lines
234 B
Bash
16 lines
234 B
Bash
#!/bin/sh
|
|
set -e
|
|
set -u
|
|
|
|
# shellcheck disable=SC2016
|
|
|
|
__install_rust() {
|
|
|
|
# Straight from https://rustup.rs/
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
|
|
pathman add "$HOME/.cargo/bin"
|
|
}
|
|
|
|
__install_rust
|