tools: fix find-inactive-collaborators for recent README change

I missed this change in 420cdc7cf9.

PR-URL: https://github.com/nodejs/node/pull/40163
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
This commit is contained in:
Rich Trott 2021-09-20 07:03:44 -07:00 committed by Node.js GitHub Bot
parent 8d5675e3fe
commit 24cc239cad

View File

@ -115,7 +115,7 @@ async function moveCollaboratorToEmeritus(peopleToMove) {
// the list, print out the remaining entries to be moved because they come
// alphabetically after the last item.
if (inCollaboratorEmeritusSection && line === '' &&
fileContents.endsWith('&gt;\n')) {
fileContents.endsWith('>\n')) {
while (textToMove.length) {
fileContents += textToMove.pop();
}