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 65b33ba

Browse filesBrowse files
Trotttargos
authored andcommitted
build: remove extraneous quotation marks from commit body
Refs: #40915 (comment) PR-URL: #40963 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
1 parent acbd822 commit 65b33ba
Copy full SHA for 65b33ba

File tree

Expand file treeCollapse file tree

1 file changed

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

1 file changed

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

‎tools/find-inactive-tsc.mjs‎

Copy file name to clipboardExpand all lines: tools/find-inactive-tsc.mjs
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,14 +251,14 @@ const inactive = lightAttendance.filter((member) => noVotes.includes(member));
251251
if (inactive.length) {
252252
// The stdout output is consumed in find-inactive-tsc.yml. If format of output
253253
// changes, find-inactive-tsc.yml may need to be updated.
254-
console.log(`INACTIVE_TSC_HANDLES="${inactive.map((entry) => '@' + entry).join(' ')}"`);
254+
console.log(`INACTIVE_TSC_HANDLES=${inactive.map((entry) => '@' + entry).join(' ')}`);
255255
const commitDetails = inactive.map((entry) => {
256256
let details = `Since ${SINCE}, `;
257257
details += `${entry} attended ${attendance[entry]} out of ${meetings.size} meetings`;
258258
details += ` and voted in ${votingRecords[entry]} of ${votes.size} votes.`;
259259
return details;
260260
});
261-
console.log(`DETAILS_FOR_COMMIT_BODY="${commitDetails.join(' ')}"`);
261+
console.log(`DETAILS_FOR_COMMIT_BODY=${commitDetails.join(' ')}`);
262262

263263
// Using console.warn() to avoid messing with find-inactive-tsc which consumes
264264
// stdout.

0 commit comments

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