mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-08 23:41:45 +00:00
fix wildcard domain name
This commit is contained in:
parent
c25947d544
commit
54e189616c
@ -223,7 +223,8 @@ _docker_cp() {
|
|||||||
_debug2 "_frompath" "$_frompath"
|
_debug2 "_frompath" "$_frompath"
|
||||||
_toname="$(basename "$_to")"
|
_toname="$(basename "$_to")"
|
||||||
_debug2 "_toname" "$_toname"
|
_debug2 "_toname" "$_toname"
|
||||||
if ! tar --transform="s,$_frompath,$_toname," -cz "$_from" 2>/dev/null | _curl_unix_sock "$_DOCKER_SOCK" PUT "/containers/$_dcid/archive?noOverwriteDirNonDir=1&path=$(printf "%s" "$_dir" | _url_encode)" '@-' "Content-Type: application/octet-stream"; then
|
_debug2 "_from" "$_from"
|
||||||
|
if ! tar --transform="s,$(printf "%s" "$_frompath" | tr '*' .),$_toname," -cz "$_from" 2>/dev/null | _curl_unix_sock "$_DOCKER_SOCK" PUT "/containers/$_dcid/archive?noOverwriteDirNonDir=1&path=$(printf "%s" "$_dir" | _url_encode)" '@-' "Content-Type: application/octet-stream"; then
|
||||||
_err "copy error"
|
_err "copy error"
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user