fix missing use

This commit is contained in:
ILoveYaToo 2020-04-13 22:56:47 -04:00
parent eead6a9048
commit a3e46c192f

View File

@ -20,7 +20,7 @@ echo "== Waiting for MySQL to start up =="
while ! mysqladmin ping -h mysql --silent; do while ! mysqladmin ping -h mysql --silent; do
sleep 0.5 sleep 0.5
done done
while ! mysql -u root -p"$MYSQL_ROOT_PASSWORD" -e "use $MYSQL_DATABASE" 2> /dev/null; do while ! mysql -hmysql -u root -p"$MYSQL_ROOT_PASSWORD" -e "use $MYSQL_DATABASE" 2> /dev/null; do
sleep 0.5 sleep 0.5
done done