mirror of
https://github.com/nextcloud/server.git
synced 2026-03-29 13:53:55 -04:00
Don't terminate the script if the pgsql database could not be deleted
This commit is contained in:
parent
1145529584
commit
6dfd1733bb
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ function execute_tests {
|
|||
mysql -u $DATABASEUSER -powncloud -e "DROP DATABASE $DATABASENAME"
|
||||
fi
|
||||
if [ "$1" == "pgsql" ] ; then
|
||||
dropdb -U $DATABASEUSER $DATABASENAME
|
||||
dropdb -U $DATABASEUSER $DATABASENAME || true
|
||||
fi
|
||||
if [ "$1" == "oci" ] ; then
|
||||
echo "drop the database"
|
||||
|
|
|
|||
Loading…
Reference in a new issue