| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent acbd822 commit 65b33ba
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -251,14 +251,14 @@ const inactive = lightAttendance.filter((member) => noVotes.includes(member)); | |||
| 251 | 251 | if (inactive.length) { | |
| 252 | 252 | // The stdout output is consumed in find-inactive-tsc.yml. If format of output | |
| 253 | 253 | // 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(' ')}`); | ||
| 255 | 255 | const commitDetails = inactive.map((entry) => { | |
| 256 | 256 | let details = `Since ${SINCE}, `; | |
| 257 | 257 | details += `${entry} attended ${attendance[entry]} out of ${meetings.size} meetings`; | |
| 258 | 258 | details += ` and voted in ${votingRecords[entry]} of ${votes.size} votes.`; | |
| 259 | 259 | return details; | |
| 260 | 260 | }); | |
| 261 | - console.log(`DETAILS_FOR_COMMIT_BODY="${commitDetails.join(' ')}"`); | ||
| 261 | + console.log(`DETAILS_FOR_COMMIT_BODY=${commitDetails.join(' ')}`); | ||
| 262 | 262 | ||
| 263 | 263 | // Using console.warn() to avoid messing with find-inactive-tsc which consumes | |
| 264 | 264 | // stdout. | |
| Back | FazBrowse Home | New Git URL |
0 commit comments