mirror of
https://github.com/transmission/transmission
synced 2025-02-22 14:10:34 +00:00
9 lines
133 B
Bash
Executable file
9 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
|