1 Commits

Author SHA1 Message Date
e6b4191542 Check for ready file every 5 seconds instead of every 10
All checks were successful
continuous-integration/drone/push Build is passing
2023-06-15 20:32:24 -07:00

View File

@@ -4,7 +4,7 @@ set -ex
if [ ! -z "$READY_FILE" ]; then
while [ ! -e $READY_FILE ]; do
echo waiting for $READY_FILE
sleep 10
sleep 5
done
fi