sync_from_old_server.sh: fix error in case of mo MySQL database was requested for sync.

This commit is contained in:
Christoph 2023-12-08 17:43:22 +01:00
parent 56d3456813
commit 47f6e3d046

View File

@ -422,9 +422,11 @@ if [[ "$sync_mysql_databases" = "ALL" ]]; then
else
echo_failed
fi
else
elif [[ -n "$sync_mysql_databases" ]]; then
_mysql_databases_remote="$sync_mysql_databases"
_got_mysql_databases=true
else
_got_mysql_databases=false
fi
if $_got_mysql_databases ; then