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

This commit is contained in:
Brian Coca 2015-07-16 19:45:44 -04:00
parent da890f9328
commit 1aeb66148b

View file

@ -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