Skip to content

Commit

Permalink
devtools: fix credit script.
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
rustyrussell authored and ZmnSCPxj committed Jul 30, 2019
1 parent b711915 commit 201b531
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devtools/credit
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ while read LINE; do
if [ $(grep -ci -- "$NAME\|$EMAIL" /tmp/prev-authors.$$) = 0 ]; then
NOTES="$NOTES""NEW COMMITTER "
fi
if ! grep -q -- "$NAME" /tmp/namers.$$; then
if ! grep -qi -- "$NAME" /tmp/namers.$$; then
if [ -z "$NAMER" ]; then
NAMER="$NAME"
NOTES="$NOTES""*NEXT NAMER* "
Expand Down

0 comments on commit 201b531

Please sign in to comment.