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>
This commit is contained in:
Rusty Russell 2019-07-30 13:50:15 +09:30 committed by ZmnSCPxj, ZmnSCPxj jxPCSmnZ
parent b7119150a7
commit 201b531eb6
1 changed files with 1 additions and 1 deletions

View File

@ -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* "