Skip to content

Commit

Permalink
Typo fix ;)
Browse files Browse the repository at this point in the history
  • Loading branch information
justinclift committed Sep 30, 2024
1 parent c709d2b commit ff148c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ _main() {
echo "------------------------"

# Get the list of databases in the database cluster
DB_LIST=$(echo 'SELECT datname FROM pg_catalog.pg_database WHERE datistemplate IS FALSE' | postgres --single -D /var/lib/postgresql/data 2>bar | grep datname | grep -v backend | cut -d '"' -f 2)
DB_LIST=$(echo 'SELECT datname FROM pg_catalog.pg_database WHERE datistemplate IS FALSE' | postgres --single -D /var/lib/postgresql/data 2>/dev/null | grep datname | grep -v backend | cut -d '"' -f 2)

# For each database, reindex it
for DATABASE in ${DB_LIST}; do
Expand Down

0 comments on commit ff148c4

Please sign in to comment.