diff options
Diffstat (limited to 'media/libaom/src/tools/gen_authors.sh')
-rw-r--r-- | media/libaom/src/tools/gen_authors.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/media/libaom/src/tools/gen_authors.sh b/media/libaom/src/tools/gen_authors.sh new file mode 100644 index 000000000..5def8bc89 --- /dev/null +++ b/media/libaom/src/tools/gen_authors.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +# Add organization names manually. + +cat <<EOF +# This file is automatically generated from the git commit history +# by tools/gen_authors.sh. + +$(git log --pretty=format:"%aN <%aE>" | sort | uniq | grep -v "corp.google\|clang-format") +EOF |