fix variable verification error

This commit is contained in:
VirtuBox 2018-09-21 14:24:54 +02:00
parent 42689af5a4
commit 95785a97ee
1 changed files with 2 additions and 2 deletions

View File

@ -106,9 +106,9 @@ if [ -z "$acme_validation" ]; then
read -p "Select an option [1-2]: " acme_choice
done
fi
if [ $acme_choice = "1" ]; then
if [ "$acme_choice" = "1" ]; then
acme_validation=standalone
elif [ $acme_choice = "2" ]; then
elif [ "$acme_choice" = "2" ]; then
acme_validation=cloudflare
fi