From ce9504401bafff763a04e2ee9a961acaac74a9e0 Mon Sep 17 00:00:00 2001 From: thomasabishop Date: Sun, 20 Apr 2025 15:07:14 +0100 Subject: [PATCH] Use less verbose log for success message --- rocketchat_notifier.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rocketchat_notifier.sh b/rocketchat_notifier.sh index a5c74ca..e654b73 100755 --- a/rocketchat_notifier.sh +++ b/rocketchat_notifier.sh @@ -28,7 +28,7 @@ WEBHOOK=${CHANNEL_TO_WEBHOOK[$1]} if [ "$2" != "error" ]; then curl -X POST \ -H 'Content-type: application/json' \ - --data "{\"text\":\"INFO \", \"attachments\": [{\"color\": \"#008000\", \"text\": \"$3\"}]}" \ + --data "{\"text\":\"INFO $3 \"}" \ "$WEBHOOK" >/dev/null 2>&1 else curl -X POST \