tool/build-loop
This commit is contained in:
12
tool/build-loop
Executable file
12
tool/build-loop
Executable file
@@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
while :
|
||||
do
|
||||
tool/build
|
||||
if [ "$?" == "0" ]; then
|
||||
echo "success"
|
||||
else
|
||||
echo "error"
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
Reference in New Issue
Block a user