fix(scripts): fix line breaks (#33)

Ensure JSON doesn't have incorrectly line breaks: https://github.com/ncarlier/webhookd/issues/32
This commit is contained in:
Emil Moe 2020-06-03 09:40:19 +02:00 committed by GitHub
parent 5a154811a9
commit 552b683f9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
fi