mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-12-22 21:21:42 +00:00
Use printf instead of echo, hopefully fix SC2039.
This commit is contained in:
parent
50a9145386
commit
19277aec87
@ -30,7 +30,7 @@ _saveaccountconf Namecom_Token "$Namecom_Token"
|
|||||||
# Auth string
|
# Auth string
|
||||||
# Name.com API v4 uses http basic auth to authenticate
|
# Name.com API v4 uses http basic auth to authenticate
|
||||||
# need to convert the token for http auth
|
# need to convert the token for http auth
|
||||||
_namecom_auth=`echo -n "$Namecom_Username:$Namecom_Token" | base64`
|
_namecom_auth=`printf "$Namecom_Username:$Namecom_Token" | base64`
|
||||||
|
|
||||||
#Usage: dns_namecom_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
|
#Usage: dns_namecom_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
|
||||||
dns_namecom_add() {
|
dns_namecom_add() {
|
||||||
|
Loading…
Reference in New Issue
Block a user