From d8afd1909dcea501ae03974134d9a530492d20e6 Mon Sep 17 00:00:00 2001 From: Lucas Peet Date: Wed, 18 Apr 2018 13:25:21 -0600 Subject: [PATCH] Change $_ret to equal constant $RENEW_SKIP If constant $RENEW_SKIP ever changes from 2, do not break the exit code here. --- acme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acme.sh b/acme.sh index 8645437e..2f6352f5 100755 --- a/acme.sh +++ b/acme.sh @@ -4400,7 +4400,7 @@ renewAll() { if [ "$rc" != "0" ]; then if [ "$rc" = "$RENEW_SKIP" ]; then _info "Skipped $d" - _ret="$rc" + _ret="$RENEW_SKIP" elif [ "$_stopRenewOnError" ]; then _err "Error renew $d, stop now." return "$rc"