Skip to content

Commit c181fe0

Browse files
committed
fix(postgres): correct typo in backup script output message
- Fixed "databse" to "database" in the echo statement of `docker-postgres-backup` script - Improves clarity and correctness of backup process logging Closes #XYZ
1 parent 1eb0c3c commit c181fe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/postgres/files/docker-postgres-backup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ rm -rf ${dir}/${container}/*
7878
for database in "${database_list[@]}"
7979
do
8080
output="${dir}/${container}/${database}.sql"
81-
echo "Dump $database databse to $output..."
81+
echo "Dump $database database to $output..."
8282
docker exec $container /bin/bash -c "pg_dump -U \$POSTGRES_USER $database" > "$output"
8383
done
8484

0 commit comments

Comments
 (0)