Fix annoying only uppercase Y thingo
This commit is contained in:
parent
645877d456
commit
bf3bb03e7e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Reference in a new issue