8 lines
89 B
Bash
Executable file
8 lines
89 B
Bash
Executable file
#! /bin/bash
|
|
|
|
# run mocha until it fails
|
|
|
|
COUNTER=0
|
|
while [ $? -eq 0 ]; do
|
|
mocha
|
|
done
|