Bugfix deleting a PostgreSQL database

Was just a typo
This commit is contained in:
Josh Marshall 2020-01-09 00:52:10 +10:00 committed by GitHub
parent 931fb5beeb
commit 99abd5ed05
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -322,7 +322,7 @@ delete_pgsql_database() {
psql_connect $HOST
query="REVOKE ALL PRIVILEGES ON DATABASE $database FROM $DBUSER"
psql_qyery "$query" > /dev/null
psql_query "$query" > /dev/null
query="DROP DATABASE $database"
psql_query "$query" > /dev/null