summaryrefslogtreecommitdiff
path: root/helpers
diff options
context:
space:
mode:
authorAndre Miranda <andreldm@xfce.org>2020-07-12 15:21:33 -0300
committerAndre Miranda <andreldm@xfce.org>2020-07-12 15:21:33 -0300
commited122f07cfeed391f2fe3b4c32b8aa027ba7080f (patch)
tree306a87359cb92ee23497b75e0f8c965973956a90 /helpers
parent4ada3e6733bf7e6383be78702c669beb3c4bcad5 (diff)
downloadxfce4-dev-tools-ed122f07cfeed391f2fe3b4c32b8aa027ba7080f.tar.gz
helpers: Use blank line for tags message
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 3e3105c..399420a 100755
--- a/helpers/xfce-update-news
+++ b/helpers/xfce-update-news
@@ -10,7 +10,7 @@ TRANSLATIONS=$(xfce-get-translations "$LAST_TAG" "HEAD" silent)
if [ "$WRITE_TAG" = "WRITETAG" ]; then
# Use release note from NEWS if possible, they may have been edited
if [ -f "NEWS" ] && [ "$VERSION" = "$(head -n 1 NEWS)" ]; then
- sed '/^[[:space:]]*$/q' NEWS
+ sed '/^[[:space:]]*$/q' NEWS | sed 's/======//'
else
printf '%s\n\n%s\n%s\n' $VERSION "$RELEASE_NOTES" "$TRANSLATIONS"
fi