Fix variable check

Check for string not execution value
This commit is contained in:
Luis Guzmán 2018-10-24 05:03:05 -05:00
parent 8835b356d0
commit 9d3d319869
No known key found for this signature in database
GPG Key ID: BE0F0FDD8926E0C5
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ echo "
# Checking $MEET_CONF file for errors
"
CHECKJS=$(esvalidate $MEET_CONF| cut -d ":" -f2)
if ($CHECKJS) < /dev/null > /dev/null 2>&1; then
if [[ -z "$CHECKJS" ]]; then
echo "
# The $MEET_CONF configuration seems correct. =)
"