Skip to content

Commit 2fe2209

Browse files
committed
Fixed typo in delete psql database part
Thanks to @joshbmarshall for the solution and @kpapad904 for pointing us to it.
1 parent 2003a74 commit 2fe2209

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ All notable changes to this project will be documented in this file.
6666
- Added mpm_itk for Deb10 single php installation only.
6767
- Hardening nginx configuration, drop TLSv1.1 support.
6868
- Fixed excluding folders named "logs" from restore backup, thanks to @davidgolsen.
69+
- Fixed typo in delete psql database part, thanks to @joshbmarshall.
6970

7071
## [1.0.6] - 2019-09-24 - Hotfix
7172
### Bugfixes

func/db.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ delete_pgsql_database() {
322322
psql_connect $HOST
323323

324324
query="REVOKE ALL PRIVILEGES ON DATABASE $database FROM $DBUSER"
325-
psql_qyery "$query" > /dev/null
325+
psql_query "$query" > /dev/null
326326

327327
query="DROP DATABASE $database"
328328
psql_query "$query" > /dev/null

0 commit comments

Comments
 (0)