mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-05 16:46:12 +00:00
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:
parent
5a154811a9
commit
552b683f9e
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user