From bd5e57d8798872e6a3dba813665b85b11cd0b856 Mon Sep 17 00:00:00 2001 From: neil Date: Mon, 8 Aug 2016 10:17:10 +0800 Subject: [PATCH] https://github.com/Neilpang/acme.sh/issues/258 --- acme.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/acme.sh b/acme.sh index 64a0e94b..5ec2d44b 100755 --- a/acme.sh +++ b/acme.sh @@ -1547,7 +1547,7 @@ issue() { vtype=$(echo $ventry | cut -d $sep -f 4) _currentRoot=$(echo $ventry | cut -d $sep -f 5) - if [ "$keyauthorization" == "$STATE_VERIFIED" ] ; then + if [ "$keyauthorization" = "$STATE_VERIFIED" ] ; then _info "$d is already verified, skip $vtype." continue fi @@ -1645,7 +1645,7 @@ issue() { vtype=$(echo $ventry | cut -d $sep -f 4) _currentRoot=$(echo $ventry | cut -d $sep -f 5) - if [ "$keyauthorization" == "$STATE_VERIFIED" ] ; then + if [ "$keyauthorization" = "$STATE_VERIFIED" ] ; then _info "$d is already verified, skip $vtype." continue fi