Fix run-tests.sh to run on dash
$(()) is more portable than let, who knew...
This commit is contained in:
parent
e02b9ea05b
commit
e5b78aa212
@ -6,7 +6,7 @@ ret=0
|
||||
for test in $TESTS; do
|
||||
echo "Running tests in $test"
|
||||
if ! python -m doctest -v $test; then
|
||||
let ret=ret+1
|
||||
ret=$((ret+1))
|
||||
fi
|
||||
done
|
||||
if test $ret != 0; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user