1 #!/bin/sh 2 # Die on the first three attempts. 3 . "$(dirname $0)"/../common.sh 4 5 inc_counter "runs" 6 if [ $(counter "runs") -lt 3 ]; then 7 exit 1 8 fi 9 passed 10