scripts/mk-release: pretty-up the per-author stats

Reverse sort first by number of changesets, then sort alphabetically
on the author's names.
This commit is contained in:
Yann E. MORIN" 2010-04-30 22:25:45 +02:00
parent 76b459919f
commit 9c83970d8b

View File

@ -114,7 +114,7 @@ print_author_stats() {
printf( " %4d %s\n", nb[author], author );
}
}' \
|sort -rn
|sort -s -k1nr -k2
}
print_author_shortlog() {