diff --git a/scripts/authors.sh b/scripts/authors.sh index cc5f28af2..1206cafbe 100755 --- a/scripts/authors.sh +++ b/scripts/authors.sh @@ -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 - Print a list of all authors who have committed to develop since the supplied tagged version. + ./authors.sh + Print a list of all authors who have committed to develop since the supplied commit ref. EOF fi