Skip to content

Commit 6c58003

Browse files
committed
Add missing semicolon in lib_db_helper
1 parent ec71bcd commit 6c58003

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/lib_db_helper.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ function boot_db() {
120120
boot_log_location="/var/log/postgres-boot.log"
121121
launch_db="(POSTGRES_HOST_AUTH_METHOD=trust docker-entrypoint.sh postgres -c 'max_connections=250' &> ${boot_log_location}) &"
122122
test_connection="psql -h localhost -U postgres -c '\conninfo' &>/dev/null"
123-
init_db="psql -c 'drop database if exists uaa;' -h localhost -U postgres
123+
init_db="psql -c 'drop database if exists uaa;' -h localhost -U postgres;
124124
psql -c 'create database uaa;' -h localhost -U postgres;
125125
psql -c 'drop user if exists root;' -h localhost --dbname=uaa -U postgres;
126126
psql -c \"create user root with superuser password '${db_password}';\" -h localhost --dbname=uaa -U postgres;

0 commit comments

Comments
 (0)