Check for ready file every 5 seconds instead of every 10
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Ask Bjørn Hansen 2023-06-15 20:32:24 -07:00
parent 35ebb8599c
commit e6b4191542

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