From 1111fa94d9671d7d43a72ab36f43e08217da6e58 Mon Sep 17 00:00:00 2001 From: Justin Hill Date: Sun, 15 Sep 2024 01:31:26 -0700 Subject: [PATCH] read the rustup script and just give it -y --- bin/other-installs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/bin/other-installs b/bin/other-installs index 0a99167..faa3547 100755 --- a/bin/other-installs +++ b/bin/other-installs @@ -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