File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -251,14 +251,14 @@ const inactive = lightAttendance.filter((member) => noVotes.includes(member));
251251if ( 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.
You can’t perform that action at this time.
0 commit comments