
add cmake-format python module to static analyzers various other script formatting and cleanup
9 lines
128 B
Bash
Executable file
9 lines
128 B
Bash
Executable file
#!/bin/bash
|
|
delay="$1"
|
|
shift
|
|
while true; do
|
|
printf ".\b"
|
|
sleep 120
|
|
done &
|
|
timeout -k 5 "$((delay * 60))" "$@"
|
|
exit "$?"
|