From be7aa42d2a0e51654d939f8e47f18170d6aeabc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Mon, 10 Jan 2022 15:12:04 +0100 Subject: [PATCH] Change output text --- Dockerfile | 2 +- entrypoint.sh | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index dcc1f83..7963d90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ FROM alpine:latest -RUN apk add --no-cache curl +RUN apk add --no-cache curl jq COPY entrypoint.sh /bin/entrypoint.sh CMD ["/bin/entrypoint.sh"] \ No newline at end of file diff --git a/entrypoint.sh b/entrypoint.sh index feec947..5987ee3 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -17,5 +17,4 @@ if [ "$?" -ne "0" ]; then exit "$?" fi -echo "Sent message with title \"${PLUGIN_TITLE}\":" -echo "${PLUGIN_MESSAGE}" \ No newline at end of file +echo "$res" | jq . \ No newline at end of file