From 552b683f9ec7f6f0e340d80d74269bc038af0fc7 Mon Sep 17 00:00:00 2001 From: Emil Moe Date: Wed, 3 Jun 2020 09:40:19 +0200 Subject: [PATCH] fix(scripts): fix line breaks (#33) Ensure JSON doesn't have incorrectly line breaks: https://github.com/ncarlier/webhookd/issues/32 --- scripts/examples/gitlab.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/examples/gitlab.sh b/scripts/examples/gitlab.sh index 05eafe6..b657c39 100755 --- a/scripts/examples/gitlab.sh +++ b/scripts/examples/gitlab.sh @@ -15,6 +15,7 @@ debug() { # Validate parameters payload=$1 +payload="$(echo "$payload"|tr -d '\n')" [ -z "$payload" ] && die "missing request payload" payload_type=$(echo $payload | jq type -r) [ $? != 0 ] && die "bad body format: expecting JSON" @@ -34,4 +35,4 @@ then git_ssh_url=$(echo $payload | jq .project.git_ssh_url -r) total_commits_count=$(echo $payload | jq .total_commits_count -r) echo "notify: $username push $total_commits_count commit(s) on $git_ssh_url" -fi \ No newline at end of file +fi