refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / rustlang / install.sh
1 #!/bin/bash
2
3 function __install_rust() {
4     # Straight from https://rustup.rs/
5     curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
6 }
7
8 __install_rust