mirror of
https://github.com/transmission/transmission.git
synced 2025-12-19 18:08:31 +00:00
10 lines
133 B
Bash
Executable File
10 lines
133 B
Bash
Executable File
#!/bin/sh
|
|
err=0
|
|
count=0
|
|
while [ $err -eq 0 ]; do
|
|
count=$((count + 1))
|
|
echo starting run number $count
|
|
make check
|
|
err=$?
|
|
done
|