vim-patch.sh: remove blank line before URL

This "stacks" better in squashed PRs, etc.
This commit is contained in:
Justin M. Keyes 2018-03-24 22:42:13 +01:00
parent 5fecd59c26
commit f8d2aef4f2

View File

@ -100,9 +100,9 @@ get_vim_sources() {
commit_message() { commit_message() {
if [[ -n "$vim_tag" ]]; then if [[ -n "$vim_tag" ]]; then
printf '%s\n\n%s' "${vim_message}" "${vim_commit_url}" printf '%s\n%s' "${vim_message}" "${vim_commit_url}"
else else
printf 'vim-patch:%s\n\n%s\n\n%s' "$vim_version" "$vim_message" "$vim_commit_url" printf 'vim-patch:%s\n\n%s\n%s' "$vim_version" "$vim_message" "$vim_commit_url"
fi fi
} }