sandcastle-ng

Scripts for the deployment of Sandcastle (GNU Taler)
Log | Files | Refs | README

commit 8cfe9a1fa1942916579f928c1cd352ad0f1510ab
parent 2ef4ce8a06c6d6d4ba151d2256628394d6b4855c
Author: Florian Dold <florian@dold.me>
Date:   Tue,  9 Dec 2025 13:38:37 +0100

fix wait loop

Diffstat:
Mscripts/demo/setup-sandcastle.sh | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/demo/setup-sandcastle.sh b/scripts/demo/setup-sandcastle.sh @@ -437,7 +437,8 @@ EOF function wait_pg_ready() { while true; do - pg_isready; ret=$? + ret=0 + pg_isready || ret=$? case "$ret" in 0) echo "Postgres is ready" >&2