summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtools/changelog.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/changelog.sh b/tools/changelog.sh
index 7329a9526..ebdffba0a 100755
--- a/tools/changelog.sh
+++ b/tools/changelog.sh
@@ -400,7 +400,7 @@ function main {
# commit if $since is unset, in short hash form.
command git rev-list --abbrev-commit --abbrev=7 ${since:+$since..}$until | while read hash; do
# Truncate list on versions with a lot of commits
- if [[ -z "$since" ]] && (( ++read_commits > 35 )); then
+ if (( ++read_commits > 40 )); then
truncate=1
break
fi