Commit 671a6994 authored by neilpang's avatar neilpang
Browse files

minor, fix shellcheck warning

parent d11d4761
...@@ -199,7 +199,7 @@ _get_root() { ...@@ -199,7 +199,7 @@ _get_root() {
#Usage: method URI data #Usage: method URI data
_rest() { _rest() {
m=$1 m="$1"
ep="$2" ep="$2"
data="$3" data="$3"
_debug "$ep" _debug "$ep"
...@@ -207,11 +207,11 @@ _rest() { ...@@ -207,11 +207,11 @@ _rest() {
_debug url "$url" _debug url "$url"
if [ "$data" ]; then if [ "$m" = "GET" ]; then
response="$(_get "$url" | tr -d '\r')"
else
_debug2 data "$data" _debug2 data "$data"
response="$(_post "$data" "$url" | tr -d '\r')" response="$(_post "$data" "$url" | tr -d '\r')"
else
response="$(_get "$url" | tr -d '\r')"
fi fi
if [ "$?" != "0" ]; then if [ "$?" != "0" ]; then
......
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