From fe2e209d1ffd4509145c6f2ff951457571cd5c66 Mon Sep 17 00:00:00 2001 From: defanor Date: Tue, 3 May 2016 05:42:34 +0300 Subject: [PATCH] fix Le_Webroot check Go for other options if it is equal to "no", not if it merely contains "no". --- acme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme.sh b/acme.sh index e6985e93..d6b3e692 100755 --- a/acme.sh +++ b/acme.sh @@ -1057,7 +1057,7 @@ issue() { Le_Keylength="" fi - if _contains "$Le_Webroot" "no" ; then + if [ "$Le_Webroot" = "no" ] ; then _info "Standalone mode." if ! _exists "nc" ; then _err "Please install netcat(nc) tools first."