From dfb6a6de57c258512e1b9240aba791f445f35146 Mon Sep 17 00:00:00 2001 From: Rafael Rubbioli Date: Tue, 23 Jul 2024 17:56:29 -0300 Subject: [PATCH] fix slack body format --- resources/notify.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/notify.sh b/resources/notify.sh index 3226b4f..a5fbb93 100644 --- a/resources/notify.sh +++ b/resources/notify.sh @@ -1,3 +1,3 @@ #/bin/sh -curl -X POST -d "'{"text": "$1"}'" $NOTIFICATION_WEBHOOK_URL +curl -X POST -d "'{"text": $1}'" $NOTIFICATION_WEBHOOK_URL