mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
autotest.sh shall not terminate if mysql db could not be dropped
This commit is contained in:
parent
5ff5b7386f
commit
75b8488ab9
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue