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