From 07623f9883f0ebc084200f79499e3bc7a008969c Mon Sep 17 00:00:00 2001 From: Marc Schaefer Date: Mon, 21 Mar 2022 19:45:46 +0100 Subject: [PATCH] Removed nested quotes --- docker/docker-prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/docker-prepare.sh b/docker/docker-prepare.sh index 9e2819d47..681ccf5a0 100755 --- a/docker/docker-prepare.sh +++ b/docker/docker-prepare.sh @@ -10,7 +10,7 @@ wait_for_postgres() { port="${PAPERLESS_DBPORT:=5342}" - while [ ! "$(pg_isready -h "$host" -p "$port")" ]; do + while [ ! "$(pg_isready -h $host -p $port)" ]; do if [ $attempt_num -eq $max_attempts ]; then echo "Unable to connect to database."