mirror of
https://github.com/transmission/transmission.git
synced 2025-12-20 02:18:42 +00:00
9 lines
121 B
Bash
Executable File
9 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
|