Skip to content

Commit 030c7a7

Browse files
only show symbol when symbol is set
1 parent bedd947 commit 030c7a7

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

libraries/rush-lib/src/logic/operations/ConsoleTimelinePlugin.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -239,11 +239,9 @@ export function _printTimeline({ terminal, result, cobuildConfiguration }: IPrin
239239

240240
function getChartSymbol(record: ITimelineRecord): string {
241241
const { isExecuteByOtherCobuildRunner, status } = record;
242-
if (isExecuteByOtherCobuildRunner) {
242+
if (isExecuteByOtherCobuildRunner && COBUILD_REPORTABLE_STATUSES.has(status)) {
243243
hasCobuildSymbol = true;
244-
if (COBUILD_REPORTABLE_STATUSES.has(status)) {
245-
return 'C';
246-
}
244+
return 'C';
247245
}
248246
return TIMELINE_CHART_SYMBOLS[status];
249247
}

0 commit comments

Comments
 (0)