Browse Source

fix shellcheck warnings.

neilpang 8 years ago
parent
commit
69925ce823
2 changed files with 2 additions and 2 deletions
  1. 1 1
      dnsapi/dns_cx.sh
  2. 1 1
      dnsapi/dns_gd.sh

+ 1 - 1
dnsapi/dns_cx.sh

@@ -189,7 +189,7 @@ _rest() {
   _H4="Content-Type: application/json"
   _H4="Content-Type: application/json"
 
 
   if [ "$data" ]; then
   if [ "$data" ]; then
-    response="$(_post "$data" "$url" "" $m)"
+    response="$(_post "$data" "$url" "" "$m")"
   else
   else
     response="$(_get "$url")"
     response="$(_get "$url")"
   fi
   fi

+ 1 - 1
dnsapi/dns_gd.sh

@@ -102,7 +102,7 @@ _gd_rest() {
 
 
   if [ "$data" ]; then
   if [ "$data" ]; then
     _debug data "$data"
     _debug data "$data"
-    response="$(_post "$data" "$GD_Api/$ep" "" $m)"
+    response="$(_post "$data" "$GD_Api/$ep" "" "$m")"
   else
   else
     response="$(_get "$GD_Api/$ep")"
     response="$(_get "$GD_Api/$ep")"
   fi
   fi