From ac47b1899681964211850d4056dc59518f274c24 Mon Sep 17 00:00:00 2001 From: David Baumgold Date: Mon, 21 Oct 2013 12:55:20 -0400 Subject: [PATCH] Release email script: use --no-pager --- scripts/release-email-list.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-email-list.sh b/scripts/release-email-list.sh index 2d875e139c..d677fcb8ed 100755 --- a/scripts/release-email-list.sh +++ b/scripts/release-email-list.sh @@ -42,7 +42,7 @@ for EMAIL in $RESPONSIBLE; do EMAIL_COL="$EMAIL" for HASH in $ALL_COMMITS; do - git log --format="tformat:|$EMAIL_COL|%s|[commit|https://github.com/edx/edx-platform/commit/%h]| |" -n 1 $HASH + git --no-pager log --format="tformat:|$EMAIL_COL|%s|[commit|https://github.com/edx/edx-platform/commit/%h]| |" -n 1 $HASH EMAIL_COL=" " done -done \ No newline at end of file +done