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) {
253253 foreach ($artifact in $directPackages ) {
254254 Write-Host " -> $ ( $artifact.ArtifactName ) "
255255 }
256- $OverallResult += GeneratePRMatrixForBatch - Packages $directPackages
256+ $OverallResult += ( GeneratePRMatrixForBatch - Packages $directPackages ) ?? @ ()
257257}
258258if ($indirectPackages ) {
259259 Write-Host " Discovered $ ( $indirectPackages.Length ) indirect packages"
260260 foreach ($artifact in $indirectPackages ) {
261261 Write-Host " -> $ ( $artifact.ArtifactName ) "
262262 }
263- $OverallResult += GeneratePRMatrixForBatch - Packages $indirectPackages - FullSparseMatrix (-not $SparseIndirect )
263+ $OverallResult += ( GeneratePRMatrixForBatch - Packages $indirectPackages - FullSparseMatrix (-not $SparseIndirect )) ?? @ ( )
264264}
265265$serialized = SerializePipelineMatrix $OverallResult
266266
You can’t perform that action at this time.
0 commit comments