Skip to content

Commit

Permalink
spell check: fix travis condition
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Feb 21, 2017
1 parent f924578 commit d766159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/spell_check/check_spelling.sh
Expand Up @@ -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
Expand Down

0 comments on commit d766159

Please sign in to comment.