mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-10 00:11:45 +00:00
disable "$response is referenced but not assigned" warning
the variable is assigned by the `_post` call
This commit is contained in:
parent
bc920949cb
commit
d8a4e47a13
@ -32,6 +32,7 @@ slack_app_send() {
|
|||||||
|
|
||||||
SLACK_APP_API_URL="https://slack.com/api/chat.postMessage"
|
SLACK_APP_API_URL="https://slack.com/api/chat.postMessage"
|
||||||
if _post "$_data" "$SLACK_APP_API_URL" "" "POST" "application/json; charset=utf-8"; then
|
if _post "$_data" "$SLACK_APP_API_URL" "" "POST" "application/json; charset=utf-8"; then
|
||||||
|
# shellcheck disable=SC2154
|
||||||
SLACK_APP_RESULT_OK=$(echo "$response" | _egrep_o 'ok" *: *true')
|
SLACK_APP_RESULT_OK=$(echo "$response" | _egrep_o 'ok" *: *true')
|
||||||
if [ "$?" = "0" ] && [ "$SLACK_APP_RESULT_OK" ]; then
|
if [ "$?" = "0" ] && [ "$SLACK_APP_RESULT_OK" ]; then
|
||||||
_info "slack send success."
|
_info "slack send success."
|
||||||
|
Loading…
Reference in New Issue
Block a user