1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-02-22 14:10:34 +00:00
transmission/libtransmission/fail.sh
2019-01-16 03:22:29 +08:00

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