Skip to content

Commit 5e14c1f

Browse files
authored
Fix bad copilot change that made processLocations space separated (#22)
1 parent 29ccaed commit 5e14c1f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

scripts/src/generateMatrix.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,8 @@ export function generateMatrix(presetArg: string, baselining: boolean, log?: boo
250250
// produced previously and need to be processed. This is a space separated list,
251251
// iterated in the pipeline in bash.
252252
outputVariables[`TSPERF_PROCESS_KINDS`] = kindOrder.filter(kind => processKinds.has(kind)).join(" ");
253-
outputVariables[`TSPERF_PROCESS_LOCATIONS`] = [...processLocations].sort().join(" ");
253+
// Comma separated, parsed by runTsPerf.ts.
254+
outputVariables[`TSPERF_PROCESS_LOCATIONS`] = [...processLocations].sort().join(",");
254255

255256
return { matrix, outputVariables };
256257
}

0 commit comments

Comments
 (0)