Skip to content
Snippets Groups Projects
Unverified Commit c908d69b authored by Daniel's avatar Daniel
Browse files

MAINT: Failing fast if no SQL is found.

parent 2fa7d1bb
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,11 @@ if [[ -n "$ENV_FILE" ]] ; then
source "$ENV_FILE"
fi
if [[ -z "$MYSQL_CMD" ]] ; then
echo "mysql not defined!"
exit 1
fi
export MYSQL_CMD
export MYSQLDUMP_CMD
export MYSQLADMIN_CMD
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment