Skip to content

Commit e8ef932

Browse files
Trottpriyank-p
authored andcommitted
fix: accommodate case changes in README header
Because of changes to the README, node-core-utils `git node land` is now broken. This fixes it. Please fast-track?
1 parent a10942b commit e8ef932

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/collaborators.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ function parseCollaborators(readme, cli) {
7474
const collaborators = new Map();
7575
let m;
7676

77-
const tscIndex = readme.indexOf(TSC_TITLE);
78-
const tsceIndex = readme.indexOf(TSCE_TITLE);
79-
const clIndex = readme.indexOf(CL_TITLE);
80-
const cleIndex = readme.indexOf(CLE_TITLE);
77+
const tscIndex = readme.toUpperCase().indexOf(TSC_TITLE.toUpperCase());
78+
const tsceIndex = readme.toUpperCase().indexOf(TSCE_TITLE.toUpperCase());
79+
const clIndex = readme.toUpperCase().indexOf(CL_TITLE.toUpperCase());
80+
const cleIndex = readme.toUpperCase().indexOf(CLE_TITLE.toUpperCase());
8181

8282
if (tscIndex === -1) {
8383
throw new Error(`Couldn't find ${TSC_TITLE} in the README`);

test/fixtures/README/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ For more information about the governance of the Node.js project, see
237237
* [bar](https://github.com/bar) -
238238
**Bar User** <[email protected]> (she/her)
239239

240-
### TSC Emeriti
240+
### TSC emeriti
241241

242242
* [test](https://github.com/test) -
243243
**Test** <[email protected]>
@@ -257,7 +257,7 @@ For more information about the governance of the Node.js project, see
257257
* [ExtraSpace](https://github.com/extraspace) -
258258
**Extra Space** <[email protected]> (he/him)
259259

260-
### Collaborator Emeriti
260+
### Collaborator emeriti
261261

262262
* [bee](https://github.com/bee) -
263263
**bee** <[email protected]>

0 commit comments

Comments
 (0)