forked from switnet/quick-jibri-installer
Fix bad loop'condition.
This commit is contained in:
parent
eb90a11f36
commit
c05002a0b4
|
@ -259,9 +259,9 @@ else
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
#Set domain
|
#Set domain
|
||||||
while [[ $ANS_JD != yes && $ANS_JD != no ]]
|
while [[ $ANS_JD != yes ]]
|
||||||
do
|
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
|
read -p "> Did you mean?: $JITSI_DOMAIN (yes or no)"$'\n' -r ANS_JD
|
||||||
if [ "$ANS_JD" = "yes" ]; then
|
if [ "$ANS_JD" = "yes" ]; then
|
||||||
echo "Alright, let's use $JITSI_DOMAIN."
|
echo "Alright, let's use $JITSI_DOMAIN."
|
||||||
|
|
Loading…
Reference in New Issue