From 9d3d3198698a15b57a77a67323563e6fafa23b20 Mon Sep 17 00:00:00 2001 From: Luis Guzman Date: Wed, 24 Oct 2018 05:03:05 -0500 Subject: [PATCH] Fix variable check Check for string not execution value --- quick_jibri_installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index 0ceac31..a82f02a 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -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. =) "