From 80fdedd1846b5e64d2ea327eba38c3af566287ea Mon Sep 17 00:00:00 2001
From: Rich Trott <rtrott@gmail.com>
Date: Mon, 20 Sep 2021 07:03:44 -0700
Subject: [PATCH] tools: fix find-inactive-collaborators for recent README
 change
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

I missed this change in 420cdc7cf954b21d48b2258a28126be60bd88f75.

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>
---
 tools/find-inactive-collaborators.mjs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/find-inactive-collaborators.mjs b/tools/find-inactive-collaborators.mjs
index 5f0173564b69af..3925f210e7c5e3 100755
--- a/tools/find-inactive-collaborators.mjs
+++ b/tools/find-inactive-collaborators.mjs
@@ -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();
       }