diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-24 11:39:51 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-09-24 11:39:51 +0200 |
commit | 75b8488ab90d924a0902ebc5fb673036c1a7fca6 (patch) | |
tree | 0b743d54613924026a331d12114ded3d4193d1db /autotest.sh | |
parent | 5ff5b7386f804959c90bf8ff216a4fe3c21f03f5 (diff) | |
download | nextcloud-server-75b8488ab90d924a0902ebc5fb673036c1a7fca6.tar.gz nextcloud-server-75b8488ab90d924a0902ebc5fb673036c1a7fca6.zip |
autotest.sh shall not terminate if mysql db could not be dropped
Diffstat (limited to 'autotest.sh')
-rwxr-xr-x | autotest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autotest.sh b/autotest.sh index e86240e4e56..094f50d4370 100755 --- a/autotest.sh +++ b/autotest.sh @@ -163,7 +163,7 @@ function execute_tests { # drop database if [ "$1" == "mysql" ] ; then - mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE $DATABASENAME" + mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE $DATABASENAME" || true fi if [ "$1" == "pgsql" ] ; then dropdb -U $DATABASEUSER $DATABASENAME || true |