diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-18 22:38:16 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-03-18 22:38:16 (EDT) |
commit | c3805f37ebdeed4de208abbe6e16e42944052990 (patch) | |
tree | b0f044cdb1e735a97fc315b78f8acdde71abb509 /scripts | |
parent | 9c0775b47bae8c6ae0c5c026e39c371a25e135cf (diff) |
scripts/announce-release.sh: Lengthen short lines
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/announce-release.sh | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/scripts/announce-release.sh b/scripts/announce-release.sh index 9d6519e..f27e0cb 100755 --- a/scripts/announce-release.sh +++ b/scripts/announce-release.sh @@ -56,25 +56,25 @@ shortlog="$(git shortlog "${old_tag}..HEAD" | \ if [ $(printf '%s\n' "${shortlog}" | wc -l) -gt 100 ]; then shortlog="$(git shortlog -s "${old_tag}..HEAD"; cat <<-EOF - Commit descriptions suppressed for brevity. To see a log - summary with descriptions, run: + Commit descriptions suppressed for brevity. To see a log summary with + descriptions, run: - \$ git shortlog ${old_tag}..${package}/${version} - EOF - )" + \$ git shortlog ${old_tag}..${package}/${version} + EOF + )" fi diffstat="$(git diff --stat=72 --color=never --find-renames=50% \ "${old_tag}..HEAD")" if [ $(printf '%s\n' "${diffstat}" | wc -l) -gt 50 ]; then diffstat="$(printf '%s\n' "${diffstat}" | tail -n 1; cat <<-EOF - Difference statistics truncated for brevity. To see full - statistics, run: + Difference statistics truncated for brevity. To see full statistics, + run: - \$ git diff --stat --find-renames=50% \\ - > ${old_tag}..${package}/${version} - EOF - )" + \$ git diff --stat --find-renames=50% \\ + > ${old_tag}..${package}/${version} + EOF + )" fi message="$({ cat | sed 's/=/=3D/g; s/ $/=20/; s/\t$/=09/;'; } <<-EOF |