1
0
Fork 0

NEWS: Increase line threshold

* tools/gitlog-to-news: 15-line minimum
master
Mike Gerwitz 2017-11-07 00:18:28 -05:00
parent 60ce72508a
commit 0e63bed633
Signed by: mikegerwitz
GPG Key ID: 8C917B7F5DC51BA2
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ git log --log-size --format="%H%n%B" \
# remember that four (or five, if merge) of these lines are the header
# (including empty line)
len=$( wc -l <<< "$text" )
test "$len" -gt 10 || continue
test "$len" -gt 15 || continue
echo "$text"
done \