Browse Source

devtools: fix credit script.

Lisa's git name is lower-case, whereas CHANGELOG.md uses upper case,
so it doesn't realize she's named a commit already.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
pull/2938/head
Rusty Russell 5 years ago
committed by ZmnSCPxj, ZmnSCPxj jxPCSmnZ
parent
commit
201b531eb6
  1. 2
      devtools/credit

2
devtools/credit

@ -30,7 +30,7 @@ while read LINE; do
if [ $(grep -ci -- "$NAME\|$EMAIL" /tmp/prev-authors.$$) = 0 ]; then if [ $(grep -ci -- "$NAME\|$EMAIL" /tmp/prev-authors.$$) = 0 ]; then
NOTES="$NOTES""NEW COMMITTER " NOTES="$NOTES""NEW COMMITTER "
fi fi
if ! grep -q -- "$NAME" /tmp/namers.$$; then if ! grep -qi -- "$NAME" /tmp/namers.$$; then
if [ -z "$NAMER" ]; then if [ -z "$NAMER" ]; then
NAMER="$NAME" NAMER="$NAME"
NOTES="$NOTES""*NEXT NAMER* " NOTES="$NOTES""*NEXT NAMER* "

Loading…
Cancel
Save