Skip to content

Commit 65b33ba

Browse files
Trotttargos
authored andcommitted
build: remove extraneous quotation marks from commit body
Refs: #40915 (comment) PR-URL: #40963 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Mohammed Keyvanzadeh <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent acbd822 commit 65b33ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/find-inactive-tsc.mjs

+2-2
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)