fix(core): print count of tasks (#6248)

This commit is contained in:
Jason Jean 2021-07-05 15:48:19 -04:00 committed by GitHub
parent cbc0160953
commit ae2b7ef5dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,7 +36,7 @@ export class ForkedProcessTaskRunner {
const count = Object.keys(taskGraph.tasks).length;
if (count > 1) {
output.logSingleLine(
`Running ${output.bold()} ${output.bold(
`Running ${output.bold(count)} ${output.bold(
'tasks'
)} with ${output.bold(executorName)}`
);