Commit f3c937f9 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #524 from Neilpang/dev

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