gobyexample/tool/build-loop
Mark McGranaghan bdadb4059e tool/build-loop
2012-10-09 11:30:23 -07:00

13 lines
127 B
Bash
Executable File

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