summaryrefslogtreecommitdiff
path: root/hacking
diff options
context:
space:
mode:
authorBrian Coca <brian.coca+git@gmail.com>2015-07-16 19:45:44 -0400
committerBrian Coca <brian.coca+git@gmail.com>2015-07-17 10:07:22 -0400
commit1aeb66148bcb97eae716bbe86430abb157157bbd (patch)
treef991c81c2e6d54b93a89cc389692aa95bfee64c3 /hacking
parentda890f9328968c41c6b7cedda35b0150b3e3a3e0 (diff)
downloadansible-1aeb66148bcb97eae716bbe86430abb157157bbd.tar.gz
actually now does what it says as it was just sorting by name
Diffstat (limited to 'hacking')
-rwxr-xr-xhacking/authors.sh2
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