From 65b33ba510df308cdcf5fb3374554616edea89a5 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 25 Nov 2021 00:44:55 -0800 Subject: [PATCH] build: remove extraneous quotation marks from commit body MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs: https://github.com/nodejs/node/pull/40915#issuecomment-978562259 PR-URL: https://github.com/nodejs/node/pull/40963 Reviewed-By: Michaƫl Zasso Reviewed-By: Mohammed Keyvanzadeh Reviewed-By: Antoine du Hamel --- tools/find-inactive-tsc.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/find-inactive-tsc.mjs b/tools/find-inactive-tsc.mjs index 98400d77855227..741fb0c0b96c49 100755 --- a/tools/find-inactive-tsc.mjs +++ b/tools/find-inactive-tsc.mjs @@ -251,14 +251,14 @@ const inactive = lightAttendance.filter((member) => noVotes.includes(member)); if (inactive.length) { // The stdout output is consumed in find-inactive-tsc.yml. If format of output // changes, find-inactive-tsc.yml may need to be updated. - console.log(`INACTIVE_TSC_HANDLES="${inactive.map((entry) => '@' + entry).join(' ')}"`); + console.log(`INACTIVE_TSC_HANDLES=${inactive.map((entry) => '@' + entry).join(' ')}`); const commitDetails = inactive.map((entry) => { let details = `Since ${SINCE}, `; details += `${entry} attended ${attendance[entry]} out of ${meetings.size} meetings`; details += ` and voted in ${votingRecords[entry]} of ${votes.size} votes.`; return details; }); - console.log(`DETAILS_FOR_COMMIT_BODY="${commitDetails.join(' ')}"`); + console.log(`DETAILS_FOR_COMMIT_BODY=${commitDetails.join(' ')}`); // Using console.warn() to avoid messing with find-inactive-tsc which consumes // stdout.