mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-12 17:31:47 +00:00
fix issue where keyauthorization starts with a - character (#184)
This commit is contained in:
parent
61579ec329
commit
7939b419f7
4
acme.sh
4
acme.sh
@ -1360,11 +1360,11 @@ issue() {
|
||||
|
||||
_debug wellknown_path "$wellknown_path"
|
||||
|
||||
token="$(printf "$keyauthorization" | cut -d '.' -f 1)"
|
||||
token="$(printf "%s" "$keyauthorization" | cut -d '.' -f 1)"
|
||||
_debug "writing token:$token to $wellknown_path/$token"
|
||||
|
||||
mkdir -p "$wellknown_path"
|
||||
printf "$keyauthorization" > "$wellknown_path/$token"
|
||||
printf "%s" "$keyauthorization" > "$wellknown_path/$token"
|
||||
if [ ! "$usingApache" ] ; then
|
||||
webroot_owner=$(_stat $_currentRoot)
|
||||
_debug "Changing owner/group of .well-known to $webroot_owner"
|
||||
|
Loading…
Reference in New Issue
Block a user