Fix variable name

This is supposed to be a variable, defined both in run-docker.sh and docker.compose.yml
This commit is contained in:
Reinaldo de Souza Jr 2015-12-22 21:41:11 -05:00
parent f5e5ed5ee1
commit 139385fd5e
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ source test/db-common.sh
# set db connection for if running in a seperate container or not
dbconn="-u root"
if [[ ! -z "MYSQL_CONTAINER" ]]; then
if [[ ! -z "$MYSQL_CONTAINER" ]]; then
dbconn="-u root -h 127.0.0.1 --port 3306"
fi