Răsfoiți Sursa

disable "$response is referenced but not assigned" warning

the variable is assigned by the `_post` call
Grigory Starinkin 3 ani în urmă
părinte
comite
d8a4e47a13
1 a modificat fișierele cu 1 adăugiri și 0 ștergeri
  1. 1 0
      notify/slack_app.sh

+ 1 - 0
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."