From 5afe9bb7b55e315c494661900a9420762f2be75a Mon Sep 17 00:00:00 2001 From: Ralph <125845868+ralphiedawg@users.noreply.github.com> Date: Mon, 10 Mar 2025 14:36:59 -0400 Subject: [PATCH] Update install.sh Make it clear it's going to abort when not a yes. --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 38c1708..38d1515 100644 --- a/install.sh +++ b/install.sh @@ -172,7 +172,7 @@ function install_main(){ echo "Assuming yes" # else, ask if they want to continue else - echo "Continue? (y/n)" + echo "Continue? (y/N)" read answer # if the answer is not yes, then exit if [ "$answer" != "y" ]; then @@ -215,7 +215,7 @@ function install_main(){ echo "Assuming yes" # else, ask if they want to continue else - echo "Continue? (y/n)" + echo "Continue? (y/N)" read answer # if the answer is not yes, then exit if [ "$answer" != "y" ]; then