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