From d5aa7b5df0529922573ca63d572d7a0bddde5b79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20Bruncs=C3=A1k?= Date: Thu, 23 Jun 2016 08:27:03 +0200 Subject: [PATCH] bug fix to respect the --accountkeylength flag --- acme.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/acme.sh b/acme.sh index 68ffad04..6aa76118 100755 --- a/acme.sh +++ b/acme.sh @@ -2633,11 +2633,13 @@ _process() { --keylength|-k) _keylength="$2" - accountkeylength="$2" + if [ "$_accountkeylength" = "no" ] ; then + _accountkeylength="$2" + fi shift ;; --accountkeylength|-ak) - accountkeylength="$2" + _accountkeylength="$2" shift ;;