summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-11-25 00:44:55 -0800
committerMichaël Zasso <targos@protonmail.com>2021-11-26 15:36:36 +0100
commit65b33ba510df308cdcf5fb3374554616edea89a5 (patch)
treee4186cd65fc6ffe9444917fab954dbbbe76762b4
parentacbd8220a7e5d758ed340ff59c6fdf5987b233e2 (diff)
downloadnode-new-65b33ba510df308cdcf5fb3374554616edea89a5.tar.gz
build: remove extraneous quotation marks from commit body
Refs: https://github.com/nodejs/node/pull/40915#issuecomment-978562259 PR-URL: https://github.com/nodejs/node/pull/40963 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
-rwxr-xr-xtools/find-inactive-tsc.mjs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/find-inactive-tsc.mjs b/tools/find-inactive-tsc.mjs
index 98400d7785..741fb0c0b9 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.