gobyexample/tools/build-loop
Mark McGranaghan 0c1a7354e5 tighten
2012-10-10 06:54:46 -07:00

13 lines
128 B
Bash
Executable File

#!/bin/bash
while :
do
tools/build
if [ "$?" == "0" ]; then
echo "success"
else
echo "error"
fi
sleep 1
done