Skip to content

Commit 20c88ba

Browse files
scbeddazure-sdk
authored andcommitted
FORCE instead of letting undefined get stripped off the front of the tuple
1 parent adcecc4 commit 20c88ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/common/scripts/job-matrix/job-matrix-functions.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ function ProcessImport([MatrixParameter[]]$matrix, [String]$selection, [Array]$n
447447
$combinedDisplayNameLookup[$lookup.Name] = $lookup.Value
448448
}
449449

450-
return @($matrix, $importedMatrix, $combinedDisplayNameLookup)
450+
return @($matrix ?? $null, $importedMatrix, $combinedDisplayNameLookup)
451451
}
452452

453453
function CombineMatrices([Array]$matrix1, [Array]$matrix2, [Hashtable]$displayNamesLookup = @{}) {

0 commit comments

Comments
 (0)