Update underscores title release script (#563)

Update the release script again since I forgot to remove the underscores
for dashes..
This commit is contained in:
Charlie Drage 2017-02-10 11:15:37 -05:00 committed by beardypig
parent 7e15e3e6cd
commit b0745a30fb
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ changelog_rst() {
DATE=$(date +"%Y-%m-%d")
CHANGELOG=$(cat CHANGELOG.rst)
HEADER="$CLI $1 ($DATE)"
UNDERLINE=$(printf %s "$HEADER" | tr -c '-' '[_*]')
UNDERLINE=$(printf %s "$HEADER" | tr -c '-' '[-*]')
echo -e "$HEADER\n$UNDERLINE\n$CHANGES\n\n$CHANGELOG" >CHANGELOG.rst
echo "Changes have been written to CHANGELOG.rst"
cd ..