mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
commit
c5eea2e7c5
@ -10,7 +10,7 @@ services:
|
||||
|
||||
env:
|
||||
global:
|
||||
- SHFMT_URL=https://github.com/mvdan/sh/releases/download/v0.4.0/shfmt_v0.4.0_linux_amd64
|
||||
- SHFMT_URL=https://github.com/mvdan/sh/releases/download/v3.1.2/shfmt_v3.1.2_linux_amd64
|
||||
|
||||
|
||||
install:
|
||||
|
@ -15,7 +15,6 @@ acme.sh is being sponsored by the following tool; please help to support us by t
|
||||
- Support ACME v2 wildcard certs
|
||||
- Simple, powerful and very easy to use. You only need 3 minutes to learn it.
|
||||
- Bash, dash and sh compatible.
|
||||
- Simplest shell script for Let's Encrypt free certificate client.
|
||||
- Purely written in Shell with no dependencies on python or the official Let's Encrypt client.
|
||||
- Just one script to issue, renew and install your certificates automatically.
|
||||
- DOES NOT require `root/sudoer` access.
|
||||
|
3
acme.sh
3
acme.sh
@ -2086,7 +2086,7 @@ _send_signed_request() {
|
||||
|
||||
_debug2 original "$response"
|
||||
if echo "$responseHeaders" | grep -i "Content-Type: *application/json" >/dev/null 2>&1; then
|
||||
response="$(echo "$response" | _normalizeJson)"
|
||||
response="$(echo "$response" | _normalizeJson | _json_decode)"
|
||||
fi
|
||||
_debug2 response "$response"
|
||||
|
||||
@ -2503,6 +2503,7 @@ _initAPI() {
|
||||
_err "Can not init api."
|
||||
return 1
|
||||
fi
|
||||
response=$(echo "$response" | _json_decode)
|
||||
_debug2 "response" "$response"
|
||||
|
||||
ACME_KEY_CHANGE=$(echo "$response" | _egrep_o 'key-change" *: *"[^"]*"' | cut -d '"' -f 3)
|
||||
|
Loading…
Reference in New Issue
Block a user