File tree 1 file changed +2
-3
lines changed
eng/common/scripts/job-matrix
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,11 @@ if (!(Test-Path $PRMatrixFile)) {
56
56
57
57
Write-Host " Generating PR job matrix for $PackagePropertiesFolder "
58
58
59
- $configs = Get-Content - Raw $PRMatrixFile | ConvertFrom-Json | ForEach-Object { [ PSCustomObject ] $_ }
59
+ $configs = Get-Content - Raw $PRMatrixFile | ConvertFrom-Json
60
60
61
61
# calculate general targeting information and create our batches prior to generating any matrix
62
62
$packageProperties = Get-ChildItem - Recurse " $PackagePropertiesFolder " * .json `
63
- | ForEach-Object { Get-Content - Path $_.FullName | ConvertFrom-Json } `
64
- | ForEach-Object { [PSCustomObject ]$_ }
63
+ | ForEach-Object { Get-Content - Path $_.FullName | ConvertFrom-Json }
65
64
66
65
# set default matrix config for each package if there isn't an override
67
66
$packageProperties | ForEach-Object {
You can’t perform that action at this time.
0 commit comments