12 [[ -n "$SLEEP_INT" ]] || SLEEP_INT=60
14 echo Starting builder polling every $SLEEP_INT seconds...
16 # polls a redis queue for jobs, starts the builder when it's got some
19 SNAPSHOT_URI=$(redis-cli -h redis LPOP snapshots)
20 [[ -n "$SNAPSHOT_URI" ]] && ./godot-export.sh "$SNAPSHOT_URI"