1
0
mirror of https://github.com/hiskaNG/acme.sh.git synced 2026-08-14 01:43:11 +00:00

Use more flexible version of uppercase to lowercase conversion.

This commit is contained in:
Armando Lüscher
2016-12-28 13:37:24 +01:00
parent edfefb6763
commit 09eccf6fc0
+1 -1
View File
@@ -86,7 +86,7 @@ _cyon_urlencode() {
_cyon_load_parameters() {
# Read the required parameters to add the TXT entry.
fulldomain="$(printf "%s" "${1}" | tr '[:upper:]' '[:lower:]')"
fulldomain="$(printf "%s" "${1}" | tr '[A-Z]' '[a-z]')"
fulldomain_idn="${fulldomain}"
# Special case for IDNs, as cyon needs a domain environment change,