From 519f678938d5992ffe6baa8b897a3ff734cfdaa1 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Mon, 18 Nov 2013 16:13:55 -0800 Subject: [PATCH] git-changelog: don't output a trailing space after the date This has been driving me and others crazy for forever. /cc @guille @MatthewMueller --- bin/git-changelog | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-changelog b/bin/git-changelog index 6bf1455..a7def4c 100755 --- a/bin/git-changelog +++ b/bin/git-changelog @@ -21,7 +21,7 @@ while [ "$1" != "" ]; do done DATE=`date +'%Y-%m-%d'` -HEAD="\n$TAG / $DATE \n==================\n\n" +HEAD="\n$TAG / $DATE\n==================\n\n" if $LIST; then version=$(git describe --tags --abbrev=0 $(git rev-list --tags --max-count=1))