From bf3bb03e7e3ac2b1dae43c93258a086b9b9cebfb Mon Sep 17 00:00:00 2001 From: sachk Date: Mon, 11 Jun 2018 18:20:21 +1000 Subject: [PATCH] Fix annoying only uppercase Y thingo --- services/php/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/php/install.sh b/services/php/install.sh index 7cf5a07..2b8f61b 100755 --- a/services/php/install.sh +++ b/services/php/install.sh @@ -12,7 +12,7 @@ fi echo "Are you sure you want to continue the install script? (Y/n)" read -n1 run -if [ "$run" = "Y" ]; then +if [ "$run" = "y" ] || [ "$run" = "Y" ]; then echo "Running install script." echo "Waiting 15 seconds for MariaDB to be ready." sleep 15