Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 8648e50

Browse filesBrowse files
TrottBethGriggs
authored andcommitted
tools: fix formatting of warning message in update-authors.js
The email already has `<` and `>` surrounding it so adding it results in a misformatted message. PR-URL: #40600 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Voltrex <mohammadkeyvanzade94@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent e2114e2 commit 8648e50
Copy full SHA for 8648e50

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎tools/update-authors.js‎

Copy file name to clipboardExpand all lines: tools/update-authors.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ rl.on('line', (line) => {
121121
const duplicate = previousAuthors.get(author);
122122
if (duplicate && !duplicate.includes(email)) {
123123
console.warn('Author name already in AUTHORS file. Possible duplicate:');
124-
console.warn(` ${author} <${email}>`);
124+
console.warn(` ${author} ${email}`);
125125
}
126126
});
127127

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.