Update install.sh

Make it clear it's going to abort when not a yes.
pull/2266/head
Ralph 6 months ago committed by GitHub
parent 3d4c34d60c
commit 5afe9bb7b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -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

Loading…
Cancel
Save