We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d26e6bc commit 8451b63Copy full SHA for 8451b63
getssl
@@ -363,7 +363,7 @@ DNS_WAIT_RETRY_ADD="false" # Try the dns_add_command again if the DNS recor
363
validate_via_dns() { # Check dns validation. Return 0 if some domain, or the given domain, requires DNS validation.
364
[[ -z $VALIDATE_VIA_DNS || $VALIDATE_VIA_DNS == "false" ]] && return 1
365
366
- # Only dot and wilcard ard valid chars for a domain that should be escaped. Full match is ensured between espaces or commas.
+ # Only dot and wilcard are valid chars for a domain that should be escaped. Full match is ensured between espaces or commas.
367
local d=$1; d=${d//\./\\.}; d=${d//\*/\\*}
368
[[ -z $1 || $VALIDATE_VIA_DNS =~ (true|(^|[ ,])${1//\./\\.}($|[ ,])) ]] && return 0
369
}
0 commit comments