Commit 1aeb6614 by Brian Coca

actually now does what it says as it was just sorting by name

parent da890f93
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment