git-changelog: don't output a trailing space after the date

This has been driving me and others crazy for forever.
/cc @guille @MatthewMueller
This commit is contained in:
Nathan Rajlich 2013-11-18 16:13:55 -08:00
parent a55cc84a11
commit 519f678938

View file

@ -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))