mirror of
https://github.com/transmission/transmission
synced 2024-12-26 01:27:28 +00:00
8 lines
121 B
Bash
Executable file
8 lines
121 B
Bash
Executable file
err=0
|
|
count=0
|
|
while [ $err -eq 0 ]; do
|
|
count=$((count+1))
|
|
echo starting run number $count
|
|
make check
|
|
err=$?
|
|
done
|