Browse Source
Merge pull request #4017 from exogee-technology/dev
Fix / Netlify API should only match exact domain matches.
pull/4027/head
neil
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
dnsapi/dns_netlify.sh
|
|
@ -114,7 +114,7 @@ _get_root() { |
|
|
|
fi |
|
|
|
|
|
|
|
if _contains "$response" "\"name\":\"$h\"" >/dev/null; then |
|
|
|
_domain_id=$(echo "$response" | _egrep_o "\"[^\"]*\",\"name\":\"$h" | cut -d , -f 1 | tr -d \") |
|
|
|
_domain_id=$(echo "$response" | _egrep_o "\"[^\"]*\",\"name\":\"$h\"" | cut -d , -f 1 | tr -d \") |
|
|
|
if [ "$_domain_id" ]; then |
|
|
|
if [ "$i" = 1 ]; then |
|
|
|
#create the record at the domain apex (@) if only the domain name was provided as --domain-alias |
|
|
|