23 lines
347 B
Bash
23 lines
347 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
. /app/utils.sh
|
||
|
|
||
|
sleep_time=3600
|
||
|
sleep_time_fail=60
|
||
|
|
||
|
function wait() {
|
||
|
delay="$1"
|
||
|
echo "💤 Sleeping $delay seconds..."
|
||
|
sleep $delay
|
||
|
}
|
||
|
|
||
|
while :
|
||
|
do
|
||
|
/app/build-gmap.sh "$OSMGARMIN_REGIONS" "$OSMGARMIN_STYLE"
|
||
|
|
||
|
if [[ $? == 0 ]]; then
|
||
|
wait $sleep_time
|
||
|
else
|
||
|
wait $sleep_time_fail
|
||
|
fi
|
||
|
done
|