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