From 1aeb66148bcb97eae716bbe86430abb157157bbd Mon Sep 17 00:00:00 2001 From: Brian Coca Date: Thu, 16 Jul 2015 19:45:44 -0400 Subject: [PATCH] actually now does what it says as it was just sorting by name --- hacking/authors.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/authors.sh b/hacking/authors.sh index 7c97840b2fb..528c3d82749 100755 --- a/hacking/authors.sh +++ b/hacking/authors.sh @@ -4,7 +4,7 @@ set -e # Get a list of authors ordered by number of commits # and remove the commit count column -AUTHORS=$(git --no-pager shortlog -nse | cut -f 2- | sort -f) +AUTHORS=$(git --no-pager shortlog -nse | cut -f 2- ) if [ -z "$AUTHORS" ] ; then echo "Authors list was empty" exit 1