summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/get-authors2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/get-authors b/contrib/get-authors
index a42f8a25b..40aaf6a6d 100755
--- a/contrib/get-authors
+++ b/contrib/get-authors
@@ -20,7 +20,7 @@ while [ $# -gt 0 ]; do
( while read lines author; do
pct=$((100*$lines/$total_lines))
if [ "$author" != "$original_author" ]; then
- if [ $pct -gt 10 ]; then
+ if [ $pct -ge 10 ]; then
major_contributors="${major_contributors:+$major_contributors, }$author"
else
minor_contributors="${minor_contributors:+$minor_contributors, }$author"
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback