diff options
-rwxr-xr-x | build-aux/release-check | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build-aux/release-check b/build-aux/release-check index 4cfdcaa..78c6cf9 100755 --- a/build-aux/release-check +++ b/build-aux/release-check @@ -23,9 +23,9 @@ declare -r RELEASE_FILE="${RELEASE_FILE:-RELEASES.md}" tag-date() { - local -r tag="${1?Missing tag}" + local -r t="${1?Missing tag}" - git show "$tag" --date=short \ + git show "$t" --date=short \ | awk '/^Date: / { print $2; exit }' } |