diff options
author | Michael DeHaan <michael@ansibleworks.com> | 2013-03-26 04:36:53 +0100 |
---|---|---|
committer | Michael DeHaan <michael@ansibleworks.com> | 2013-03-26 04:36:53 +0100 |
commit | b066e9c15c8e443b84852688170a47a6eab48e1b (patch) | |
tree | 4257a92a22f1d5ec36f4737a9ddefc017ca1b884 /hacking/authors.sh | |
parent | Upgrade callbacks further, now '.play', '.task', and so on are also available! (diff) | |
download | ansible-b066e9c15c8e443b84852688170a47a6eab48e1b.tar.xz ansible-b066e9c15c8e443b84852688170a47a6eab48e1b.zip |
Remove authors file from version control (can still be built from 'make authors')
Diffstat (limited to 'hacking/authors.sh')
-rw-r--r-- | hacking/authors.sh | 4 |
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" |