forgot to quote MYSQL_GID

This commit is contained in:
Asif Bacchus 2020-11-28 03:54:20 -07:00
parent 6422421294
commit 2738255c05
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ if ! [ "$MYSQL_UID" -eq "$MYSQL_UID" ]; then
else
printf "Setting mysql UID to %s\n" "$MYSQL_UID"
fi
if ! [ $MYSQL_GID -eq "$MYSQL_UID" ]; then
if ! [ "$MYSQL_GID" -eq "$MYSQL_UID" ]; then
printf "'%s' is not a valid value for MYSQL_GID\n" "$MYSQL_UID"
exit 1
else