We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6887805 + 8d783e8 commit e6959f0Copy full SHA for e6959f0
acme.sh
@@ -1,6 +1,6 @@
1
#!/usr/bin/env sh
2
3
-VER=3.0.3
+VER=3.0.4
4
5
PROJECT_NAME="acme.sh"
6
@@ -2691,6 +2691,13 @@ _initAPI() {
2691
return 1
2692
}
2693
2694
+_clearCA() {
2695
+ export ACME_DIRECTORY=
2696
+ export CA_CONF=
2697
+ export ACCOUNT_KEY_PATH=
2698
+ export ACCOUNT_JSON_PATH=
2699
+}
2700
+
2701
#[domain] [keylength or isEcc flag]
2702
_initpath() {
2703
domain="$1"
@@ -5357,6 +5364,7 @@ renew() {
5357
5364
#renewAll [stopRenewOnError]
5358
5365
renewAll() {
5359
5366
_initpath
5367
+ _clearCA
5360
5368
_stopRenewOnError="$1"
5361
5369
_debug "_stopRenewOnError" "$_stopRenewOnError"
5362
5370
_ret="0"
0 commit comments