release.sh: make no differences between contributors

Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Nicolas Sebrecht 2016-05-19 08:42:46 +02:00
parent a2a8a908ca
commit c2d13db61e

View File

@ -29,7 +29,6 @@ CHANGELOG='Changelog.md'
CACHEDIR='.git/offlineimap-release' CACHEDIR='.git/offlineimap-release'
WEBSITE='website' WEBSITE='website'
WEBSITE_LATEST="${WEBSITE}/_data/latest.yml" WEBSITE_LATEST="${WEBSITE}/_data/latest.yml"
ME='Nicolas Sebrecht'
TMP_CHANGELOG_EXCERPT="${CACHEDIR}/changelog.excerpt.md" TMP_CHANGELOG_EXCERPT="${CACHEDIR}/changelog.excerpt.md"
TMP_CHANGELOG_EXCERPT_OLD="${TMP_CHANGELOG_EXCERPT}.old" TMP_CHANGELOG_EXCERPT_OLD="${TMP_CHANGELOG_EXCERPT}.old"
@ -155,8 +154,7 @@ function update_offlineimap_version () {
# #
function get_git_history () { function get_git_history () {
debug 'in get_git_history' debug 'in get_git_history'
git log --format='- %h %s. [%aN]' --no-merges "${1}.." | \ git log --format='- %h %s. [%aN]' --no-merges "${1}.."
sed -r -e "s, \[${ME}\]$,,"
} }