summaryrefslogtreecommitdiff
path: root/helpers
diff options
context:
space:
mode:
authorAndre Miranda <andreldm@xfce.org>2020-07-09 20:03:39 -0300
committerAndre Miranda <andreldm@xfce.org>2020-07-09 20:42:08 -0300
commit796174773bde6d16790e5b48e2403747345c1a0d (patch)
tree0d985793b394ba46304434298f1dad3a46423bce /helpers
parent2b5b1052785cd31574d480d487921a13a63d03f4 (diff)
downloadxfce4-dev-tools-796174773bde6d16790e5b48e2403747345c1a0d.tar.gz
helpers: Do not strip NEWS blank line at EOF
Diffstat (limited to 'helpers')
-rwxr-xr-xhelpers/xfce-update-news2
1 files changed, 1 insertions, 1 deletions
diff --git a/helpers/xfce-update-news b/helpers/xfce-update-news
index 8aa73b7..42173b1 100755
--- a/helpers/xfce-update-news
+++ b/helpers/xfce-update-news
@@ -24,7 +24,7 @@ elif [ ! -f "NEWS" ]; then
printf '%s\n======\n%s\n%s\n\n%s' $VERSION "$(cat $RELEASE_NOTES)" "$(cat $TRANSLATIONS)"
cleanup
else
- printf '%s\n======\n%s\n%s\n\n%s' $VERSION "$(cat $RELEASE_NOTES)" "$(cat $TRANSLATIONS)" "$(cat NEWS)" > NEWS
+ printf '%s\n======\n%s\n%s\n\n%s\n' $VERSION "$(cat $RELEASE_NOTES)" "$(cat $TRANSLATIONS)" "$(cat NEWS)" > NEWS
cleanup
git diff NEWS
fi