Browse Source

Don't terminate the script if the pgsql database could not be deleted

remotes/origin/fix-10825
Thomas Müller 11 years ago
parent
commit
6dfd1733bb
  1. 2
      autotest.sh

2
autotest.sh

@ -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…
Cancel
Save