1
0
Fork 0

Fix annoying only uppercase Y thingo

This commit is contained in:
sachk 2018-06-11 18:20:21 +10:00 committed by GitHub
parent 645877d456
commit bf3bb03e7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ fi
echo "Are you sure you want to continue the install script? (Y/n)" echo "Are you sure you want to continue the install script? (Y/n)"
read -n1 run read -n1 run
if [ "$run" = "Y" ]; then if [ "$run" = "y" ] || [ "$run" = "Y" ]; then
echo "Running install script." echo "Running install script."
echo "Waiting 15 seconds for MariaDB to be ready." echo "Waiting 15 seconds for MariaDB to be ready."
sleep 15 sleep 15