Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2014-09-24 13:39:51 +0400
committerThomas Müller <thomas.mueller@tmit.eu>2014-09-24 13:39:51 +0400
commit75b8488ab90d924a0902ebc5fb673036c1a7fca6 (patch)
tree0b743d54613924026a331d12114ded3d4193d1db /autotest.sh
parent5ff5b7386f804959c90bf8ff216a4fe3c21f03f5 (diff)
autotest.sh shall not terminate if mysql db could not be dropped
Diffstat (limited to 'autotest.sh')
-rwxr-xr-xautotest.sh2
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