From 6a90c7f5e3313e7e6bf841809efb542ae68f028b Mon Sep 17 00:00:00 2001 From: evilsocket Date: Fri, 23 Feb 2018 03:50:57 +0100 Subject: [PATCH] misc: small fix or general refactoring i did not bother commenting --- changelog.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog.sh b/changelog.sh index ae9ffa76..979997e4 100755 --- a/changelog.sh +++ b/changelog.sh @@ -28,9 +28,9 @@ done echo echo "Changelog" echo "===" -echo if [ -n "$NEW" ]; then + echo echo "**New Features**" echo for l in "${NEW[@]}" @@ -40,6 +40,7 @@ if [ -n "$NEW" ]; then fi if [ -n "$FIXES" ]; then + echo echo "**Fixes**" echo for l in "${FIXES[@]}" @@ -49,6 +50,7 @@ if [ -n "$FIXES" ]; then fi if [ -n "$MISC" ]; then + echo echo "**Misc**" echo for l in "${MISC[@]}"