fix language

This commit is contained in:
William Banfield
2021-10-04 13:38:04 -04:00
parent b701bf84a4
commit 7dbb1fac85

View File

@@ -1,15 +1,14 @@
#! /bin/bash
tag=$1
ref=$1
if [[ ! -z "$tag" ]]; then
git log master..$tag | grep Author | sort | uniq
if [[ ! -z "$ref" ]]; then
git log master..$ref | grep Author | sort | uniq
else
cat << EOF
Usage:
./authors.sh <tag>
Print a list of all authors who have committed to develop since the supplied tagged version.
./authors.sh <ref>
Print a list of all authors who have committed to develop since the supplied commit ref.
EOF
fi