changelogs: ignore merges

This commit is contained in:
Daniel Hahler 2016-12-25 23:48:57 +01:00
parent bc8fbf91eb
commit 717888e711
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ changelogs:
git --git-dir=src/.git tag | grep -v rc | sort -n | \
(while read v; do \
test -z "$$pv" && pv="`git --git-dir=src/.git rev-list HEAD | tail -n1`" ; \
git --git-dir=src/.git shortlog $$pv..$$v > html/changelogs/short/$$v ; \
git --git-dir=src/.git log $$pv..$$v > html/changelogs/$$v ; \
git --git-dir=src/.git shortlog --no-merges $$pv..$$v > html/changelogs/short/$$v ; \
git --git-dir=src/.git log --no-merges $$pv..$$v > html/changelogs/$$v ; \
pv=$$v; done)
manpages: