summaryrefslogtreecommitdiffstats
path: root/third_party/aom/tools/author_first_release.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/aom/tools/author_first_release.sh')
-rwxr-xr-xthird_party/aom/tools/author_first_release.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/third_party/aom/tools/author_first_release.sh b/third_party/aom/tools/author_first_release.sh
deleted file mode 100755
index 7b0b79721..000000000
--- a/third_party/aom/tools/author_first_release.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-##
-## List the release each author first contributed to.
-##
-## Usage: author_first_release.sh [TAGS]
-##
-## If the TAGS arguments are unspecified, all tags reported by `git tag`
-## will be considered.
-##
-tags=${@:-$(git tag)}
-for tag in $tags; do
- git shortlog -n -e -s $tag |
- cut -f2- |
- awk "{print \"${tag#v}\t\"\$0}"
-done | sort -k2 | uniq -f2