Fix PATH for the foreman scripts

This commit is contained in:
Janne Heß
2025-07-16 17:39:19 +02:00
parent d0008d4238
commit 80980f8b32
2 changed files with 4 additions and 0 deletions
+2
View File
@@ -1,5 +1,7 @@
#!/bin/sh
export PATH=$(pwd)/src/script:$PATH
# wait for postgresql to listen
while ! pg_isready -h $(pwd)/.hydra-data/postgres -p 64444; do sleep 1; done
+2
View File
@@ -1,5 +1,7 @@
#!/bin/sh
export PATH=$(pwd)/src/script:$PATH
# wait for hydra-server to listen
while ! nc -z localhost 63333; do sleep 1; done