Fix fake LINT check success (#8092)
authorJozef Behran <jozuejozef@gmail.com>
Sat, 12 Jan 2019 15:15:42 +0000 (10:15 -0500)
committerLoïc Blot <nerzhul@users.noreply.github.com>
Sat, 12 Jan 2019 15:15:42 +0000 (16:15 +0100)
commit03cc93f48957a5dee04c56ff8c5b05d647e77d2d
tree1b209e0b9ed3cf98ff17f39e5478b3e63d1c433c
parenta18c310adb075b1ba94950b6ee811c68dec2f66b
Fix fake LINT check success (#8092)

The code 'if [ -z ${something} ]; then ... fi' means "if
${something} is an empty string, yell at the command line
about 'binary operator expected' and ignore the body of the
if statement, if ${something} is not an empty string,
the condition is false so ignore the body of the if
statement" which clearly isn't what the author wanted. Fix
it by adding a few quotes around the offending ${something}.
util/travis/lint.sh