File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
eng/common/scripts/job-matrix Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -253,14 +253,14 @@ if ($directPackages) {
253
253
foreach ($artifact in $directPackages ) {
254
254
Write-Host " -> $ ( $artifact.ArtifactName ) "
255
255
}
256
- $OverallResult += GeneratePRMatrixForBatch - Packages $directPackages
256
+ $OverallResult += ( GeneratePRMatrixForBatch - Packages $directPackages ) ?? @ ()
257
257
}
258
258
if ($indirectPackages ) {
259
259
Write-Host " Discovered $ ( $indirectPackages.Length ) indirect packages"
260
260
foreach ($artifact in $indirectPackages ) {
261
261
Write-Host " -> $ ( $artifact.ArtifactName ) "
262
262
}
263
- $OverallResult += GeneratePRMatrixForBatch - Packages $indirectPackages - FullSparseMatrix (-not $SparseIndirect )
263
+ $OverallResult += ( GeneratePRMatrixForBatch - Packages $indirectPackages - FullSparseMatrix (-not $SparseIndirect )) ?? @ ( )
264
264
}
265
265
$serialized = SerializePipelineMatrix $OverallResult
266
266
You can’t perform that action at this time.
0 commit comments