Skip to content

Commit

Permalink
read the rustup script and just give it -y
Browse files Browse the repository at this point in the history
  • Loading branch information
booniepepper committed Sep 15, 2024
1 parent ca4c62e commit 1111fa9
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions bin/other-installs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

set -eux

install_rustup() {
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
}

yes 1 | install_rustup
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup-install
chmod +x ./rustup-install
./rustup-install -y
rm ./rustup-install

. "$HOME/.cargo/env"
cargo install sigi

0 comments on commit 1111fa9

Please sign in to comment.