From b2cdc1d5b3eafb82b2658d55202e46d825b5f976 Mon Sep 17 00:00:00 2001 From: Carlos Guerrero Date: Mon, 7 Oct 2024 14:59:15 +0100 Subject: [PATCH] Handle uppercase "Y" properly during install --- bin/install | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/install b/bin/install index a03d70d..58c0c34 100755 --- a/bin/install +++ b/bin/install @@ -488,7 +488,7 @@ initiate() { echo - if [ "$yes_g" != "y" ]; then + if [ "${yes_g,,}" != "y" ]; then echo "Aborted" exit 1 fi @@ -522,7 +522,7 @@ initiate() { echo - if [ "$yes_go" != "y" ]; then + if [ "${yes_go,,}" != "y" ]; then exit 0 fi fi