summaryrefslogtreecommitdiff
path: root/hacking/authors.sh
diff options
context:
space:
mode:
authorMichael DeHaan <michael@ansibleworks.com>2013-03-25 23:36:53 -0400
committerMichael DeHaan <michael@ansibleworks.com>2013-03-25 23:36:53 -0400
commitb066e9c15c8e443b84852688170a47a6eab48e1b (patch)
tree4257a92a22f1d5ec36f4737a9ddefc017ca1b884 /hacking/authors.sh
parent42b0e51223562bcf94d23cec8518c60606927e58 (diff)
downloadansible-b066e9c15c8e443b84852688170a47a6eab48e1b.tar.gz
Remove authors file from version control (can still be built from 'make authors')
Diffstat (limited to 'hacking/authors.sh')
-rw-r--r--hacking/authors.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/hacking/authors.sh b/hacking/authors.sh
index f9287828e4..7c97840b2f 100644
--- a/hacking/authors.sh
+++ b/hacking/authors.sh
@@ -4,11 +4,11 @@ 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-)
+AUTHORS=$(git --no-pager shortlog -nse | cut -f 2- | sort -f)
if [ -z "$AUTHORS" ] ; then
echo "Authors list was empty"
exit 1
fi
# Display the authors list and write it to the file
-echo "$AUTHORS" | tee "$(git rev-parse --show-toplevel)/AUTHORS.TXT" | sort
+echo "$AUTHORS" | tee "$(git rev-parse --show-toplevel)/AUTHORS.TXT"