From 544663fb6855931d29bb0f4ff7fc1b24e0080283 Mon Sep 17 00:00:00 2001 From: Adam Lamers Date: Sat, 28 Sep 2024 18:33:09 -0400 Subject: [PATCH] rustup no prompt --- common_shell_functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_shell_functions b/common_shell_functions index 23f148e..d5c671d 100644 --- a/common_shell_functions +++ b/common_shell_functions @@ -130,7 +130,7 @@ function install_nvm() { function install_rust() { if [ ! -d "$HOME/.rustup" ]; then - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y else echo "rustup is already installed. remove ~/.rustup to reinstall" fi