spell check: fix travis condition

This commit is contained in:
Juergen E. Fischer 2017-02-21 12:38:14 +01:00
parent f924578b63
commit d766159826

View File

@ -28,7 +28,7 @@ if [[ "$OSTYPE" =~ darwin* ]]; then
fi
# ARGUMENTS
INTERACTIVE=$( ( tty -s || [[ $TRAVIS ~= true ]] ) && echo YES || echo NO)
INTERACTIVE=$( ( tty -s || [[ "$TRAVIS" =~ true ]] ) && echo YES || echo NO)
DEBUG=NO
OUTPUTLOG=""
while getopts ":rdl:" opt; do