correct variable references to prevent incorrect globbing

This commit is contained in:
Asif Bacchus 2019-01-04 22:58:24 -07:00
parent 4bc6ffc24c
commit 276f13207b
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ done
# using certbot?
while true; do
read -p "Are you using Certbot to handle your SSL certificates? (default: NO) " yn
case $yn in
case "${yn}" in
[Yy]*)
useCertbot=1
break
@ -91,7 +91,7 @@ done
if [ "${useCertbot}" -eq 1 ]; then
while true; do
read -p "What is the primary domain for your Certbot Certificates? " inputCertbotDomain
case $inputCertbotDomain in
case "${inputCertbotDomain}" in
'')
echo -e "\n${err}You cannot have an empty domain name${norm}"
;;