actually now does what it says as it was just sorting by name
This commit is contained in:
parent
da890f9328
commit
1aeb66148b
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ set -e
|
||||||
|
|
||||||
# Get a list of authors ordered by number of commits
|
# Get a list of authors ordered by number of commits
|
||||||
# and remove the commit count column
|
# 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
|
if [ -z "$AUTHORS" ] ; then
|
||||||
echo "Authors list was empty"
|
echo "Authors list was empty"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Reference in a new issue