Remove paging from git log, works better for automation

This commit is contained in:
Ismo Vuorinen
2016-08-10 13:41:05 +03:00
parent ec78cb8335
commit c2ccbbf08f

View File

@@ -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