From c05002a0b4b1abbc80de93d9f3e83a656e6ea9e7 Mon Sep 17 00:00:00 2001 From: Ark74 Date: Mon, 25 Jan 2021 04:31:41 -0600 Subject: [PATCH] Fix bad loop'condition. --- quick_jibri_installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quick_jibri_installer.sh b/quick_jibri_installer.sh index ff49070..bda9737 100644 --- a/quick_jibri_installer.sh +++ b/quick_jibri_installer.sh @@ -259,9 +259,9 @@ else fi done #Set domain -while [[ $ANS_JD != yes && $ANS_JD != no ]] +while [[ $ANS_JD != yes ]] do -read -p "> Please set your domain (or subdmain) here: (jitsi.domain.com)"$'\n' -r JITSI_DOMAIN +read -p "> Please set your domain (or subdmain) here: (e.g.: jitsi.domain.com)"$'\n' -r JITSI_DOMAIN read -p "> Did you mean?: $JITSI_DOMAIN (yes or no)"$'\n' -r ANS_JD if [ "$ANS_JD" = "yes" ]; then echo "Alright, let's use $JITSI_DOMAIN."