mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-03 18:00:18 +00:00
11 lines
179 B
Bash
11 lines
179 B
Bash
#!/bin/bash
|
|
set -e
|
|
set -u
|
|
|
|
function __install_rust() {
|
|
# Straight from https://rustup.rs/
|
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
|
|
}
|
|
|
|
__install_rust
|