summary refs log tree commit diff stats
path: root/watch.sh
blob: ba5c1b9b684f91489d676c4db557ecdb7a09e3b3 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/sh

sleeptime=${1-10}

while true; do
    ./build.sh
    sleep "$sleeptime"
done