Removed nested quotes

This commit is contained in:
Marc Schaefer 2022-03-21 19:45:46 +01:00
parent c2c8a27545
commit 07623f9883

View File

@ -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."