Browse Source
disable "$response is referenced but not assigned" warning
the variable is assigned by the `_post` call
pull/4194/head
Grigory Starinkin
2 years ago
No known key found for this signature in database
GPG Key ID: 6A32D1F8AB4C166A
1 changed files with
1 additions and
0 deletions
-
notify/slack_app.sh
|
|
@ -32,6 +32,7 @@ slack_app_send() { |
|
|
|
|
|
|
|
SLACK_APP_API_URL="https://slack.com/api/chat.postMessage" |
|
|
|
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') |
|
|
|
if [ "$?" = "0" ] && [ "$SLACK_APP_RESULT_OK" ]; then |
|
|
|
_info "slack send success." |
|
|
|