Remove authors file from version control (can still be built from 'make authors')

This commit is contained in:
Michael DeHaan
2013-03-25 23:36:53 -04:00
parent 42b0e51223
commit b066e9c15c
2 changed files with 2 additions and 223 deletions

View File

@@ -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"