From c2ccbbf08fbb02b11ba563445362811d291853c9 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Wed, 10 Aug 2016 13:41:05 +0300 Subject: [PATCH] Remove paging from git log, works better for automation --- release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 4a8972b..74f415d 100755 --- a/release.sh +++ b/release.sh @@ -116,7 +116,7 @@ echo "$NEW_VERSION" > "$FILE_VERSION" # Create our changelog echo "## $NEW_VERSION ($NOW)" > tmpfile -git log --pretty=format:" - %s" --date=short --no-merges "$BASE_STRING"...HEAD >> tmpfile +git --no-pager log --pretty=format:" - %s" --date=short --no-merges "$BASE_STRING"...HEAD >> tmpfile echo "" >> tmpfile echo "[Full changelog]($PROJECT_URL/compare/$BASE_STRING...$NEW_VERSION)" echo "" >> tmpfile