variable expansion consistency & actions push

This commit is contained in:
Guilherme Capilé 2022-06-07 11:59:34 -03:00
parent b5f49d9563
commit 4f816c06b0
1 changed files with 4 additions and 4 deletions

View File

@ -146,14 +146,14 @@ _ultra_rest() {
if [ -z "$AUTH_TOKEN" ]; then if [ -z "$AUTH_TOKEN" ]; then
_ultra_login _ultra_login
fi fi
_debug TOKEN "${AUTH_TOKEN}" _debug TOKEN "$AUTH_TOKEN"
export _H1="Content-Type: application/json" export _H1="Content-Type: application/json"
export _H2="Authorization: Bearer ${AUTH_TOKEN}" export _H2="Authorization: Bearer $AUTH_TOKEN"
if [ "$m" != "GET" ]; then if [ "$m" != "GET" ]; then
_debug data "${data}" _debug data "$data"
response="$(_post "${data}" "${ULTRA_API}${ep}" "" "${m}")" response="$(_post "$data" "$ULTRA_API$ep" "" "$m")"
else else
response="$(_get "$ULTRA_API$ep")" response="$(_get "$ULTRA_API$ep")"
fi fi