浏览代码

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

tags/v8.0.0alpha1
Thomas Müller 9 年前
父节点
当前提交
6dfd1733bb
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      autotest.sh

+ 1
- 1
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"

正在加载...
取消
保存