From 7dbb1fac855b95baf5066083c59dcf0064a19b8b Mon Sep 17 00:00:00 2001 From: William Banfield Date: Mon, 4 Oct 2021 13:38:04 -0400 Subject: [PATCH] fix language --- scripts/authors.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) 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