1
0
mirror of https://github.com/hiskaNG/acme.sh.git synced 2026-08-22 22:02:53 +00:00

bug fix to respect the --accountkeylength flag (#219)

Thanks.
This commit is contained in:
bruncsak
2016-06-23 14:11:43 +02:00
committed by neil
parent 13d7cae9e2
commit 2ce87fe264
+4 -2
View File
@@ -2633,11 +2633,13 @@ _process() {
--keylength|-k) --keylength|-k)
_keylength="$2" _keylength="$2"
accountkeylength="$2" if [ "$_accountkeylength" = "no" ] ; then
_accountkeylength="$2"
fi
shift shift
;; ;;
--accountkeylength|-ak) --accountkeylength|-ak)
accountkeylength="$2" _accountkeylength="$2"
shift shift
;; ;;