Update docker-entrypoint

line 75
using `"text":"$text" fails, but if you change it to `"content":"$text"` it works
This commit is contained in:
hthighwaymonk
2021-10-07 15:46:58 -07:00
committed by GitHub
parent 3fb69019f1
commit 44aaecc310
+1 -1
View File
@@ -72,7 +72,7 @@ generate_webhook_payload() {
local text="$@" local text="$@"
cat <<EOF cat <<EOF
{ {
"text":"$text" "content":"$text"
} }
EOF EOF
} }