mirror of
https://github.com/fradelg/docker-mysql-cron-backup.git
synced 2025-01-18 16:22:33 +01:00
Add missing space in if with square bracket
A missing space at the end of an if condition was generating a warning message. /restore.sh: line 14: [: missing `]' Adding it delete this error message
This commit is contained in:
parent
726585bd41
commit
db19ca1130
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ set -o pipefail
|
|||
|
||||
SQL=$(gunzip -c "$1")
|
||||
DB_NAME=${MYSQL_DATABASE:-${MYSQL_DB}}
|
||||
if [ -z "${DB_NAME}"]
|
||||
if [ -z "${DB_NAME}" ]
|
||||
then
|
||||
DB_NAME=$(echo "$SQL" | grep -oE '(Database: (.+))' | cut -d ' ' -f 2)
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue