contributors: strip off final comma

The final row of contributors should not end with a comma as it's the
end of the list.

Closes: #8785
Reviewed-by: Daniel Stenberg <daniel@haxx.se>
This commit is contained in:
Daniel Gustafsson 2022-05-02 22:45:09 +02:00
parent 5e9a703cf2
commit 803947a1c7

View File

@ -91,7 +91,8 @@ awk '{
}
END {
printf(" %s\n", p);
pp=substr(p,1,length(p)-1);
printf(" %s\n", pp);
printf(" (%d contributors)\n", num);
}