Commit 9aed1e2d authored by RaidenII's avatar RaidenII
Browse files

Argh. Double quotes.

parent 63c6ed3f
...@@ -17,7 +17,7 @@ dns_duckdns_add() { ...@@ -17,7 +17,7 @@ dns_duckdns_add() {
txtvalue=$2 txtvalue=$2
# We'll extract the domain/username from full domain # We'll extract the domain/username from full domain
DuckDNS_Domain=$(echo $fulldomain | _lower_case | _egrep_o '.[^.]*.duckdns.org' | cut -d . -f 2) DuckDNS_Domain=$(echo "$fulldomain" | _lower_case | _egrep_o '.[^.]*.duckdns.org' | cut -d . -f 2)
if [ -z "$DuckDNS_Domain" ]; then if [ -z "$DuckDNS_Domain" ]; then
_err "Error extracting the domain." _err "Error extracting the domain."
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment