Skip to content

Commit d766159

Browse files
committed
spell check: fix travis condition
1 parent f924578 commit d766159

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/spell_check/check_spelling.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [[ "$OSTYPE" =~ darwin* ]]; then
2828
fi
2929

3030
# ARGUMENTS
31-
INTERACTIVE=$( ( tty -s || [[ $TRAVIS ~= true ]] ) && echo YES || echo NO)
31+
INTERACTIVE=$( ( tty -s || [[ "$TRAVIS" =~ true ]] ) && echo YES || echo NO)
3232
DEBUG=NO
3333
OUTPUTLOG=""
3434
while getopts ":rdl:" opt; do

0 commit comments

Comments
 (0)