diff options
author | Brian Coca <brian.coca+git@gmail.com> | 2015-07-17 01:45:44 +0200 |
---|---|---|
committer | Brian Coca <brian.coca+git@gmail.com> | 2015-07-17 16:07:22 +0200 |
commit | 1aeb66148bcb97eae716bbe86430abb157157bbd (patch) | |
tree | f991c81c2e6d54b93a89cc389692aa95bfee64c3 /hacking/authors.sh | |
parent | Merge pull request #11622 from amenonsen/gathering (diff) | |
download | ansible-1aeb66148bcb97eae716bbe86430abb157157bbd.tar.xz ansible-1aeb66148bcb97eae716bbe86430abb157157bbd.zip |
actually now does what it says as it was just sorting by name
Diffstat (limited to 'hacking/authors.sh')
-rwxr-xr-x | hacking/authors.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/authors.sh b/hacking/authors.sh index 7c97840b2f..528c3d8274 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 |