From 634ad8937e2943d5eda6ba50600a5586902c3c10 Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Thu, 23 May 2013 16:06:08 -0400 Subject: [PATCH] Tidy up argument parsing in release email script --- scripts/release-email-list.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/release-email-list.sh b/scripts/release-email-list.sh index 92f7a9aef4..64fa7c00d1 100755 --- a/scripts/release-email-list.sh +++ b/scripts/release-email-list.sh @@ -1,7 +1,6 @@ #! /bin/bash -LOG_SPEC="$1..$2" -LOG_CMD="git --no-pager log $LOG_SPEC" +LOG_CMD="git --no-pager log $1..$2" RESPONSIBLE=$(sort -u <($LOG_CMD --format='tformat:%ae' && $LOG_CMD --format='tformat:%ce'))