Merge pull request #15536 from owncloud/fix-mysql-autotest

[autotest.sh] use the DATABASEHOST for the mysql DB drop
This commit is contained in:
Robin McCorkell 2015-04-10 21:56:27 +01:00
commit 2e88f8af43
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ function execute_tests {
# drop database
if [ "$1" == "mysql" ] ; then
mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE IF EXISTS $DATABASENAME" || true
mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE IF EXISTS $DATABASENAME" -h $DATABASEHOST || true
fi
if [ "$1" == "pgsql" ] ; then
dropdb -U $DATABASEUSER $DATABASENAME || true