File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1039,13 +1039,13 @@ for ($index = 0; $index -lt $scenarioGroups.Count; $index++) {
10391039}
10401040
10411041$extendedRuns = @ ($runs | Where-Object HasExtendedProvenance)
1042- $abFactors = @ ($extendedRuns. AbFactor | Sort-Object - Unique)
1042+ $abFactors = @ ($extendedRuns | ForEach-Object AbFactor | Sort-Object - Unique)
10431043$rootAbFactor = if ($abFactors.Count -eq 0 ) {
10441044 $null
10451045} else {
10461046 $abFactors [0 ]
10471047}
1048- $rootConfigHashes = @ ($extendedRuns. ConfigSha256 | Sort-Object - Unique)
1048+ $rootConfigHashes = @ ($extendedRuns | ForEach-Object ConfigSha256 | Sort-Object - Unique)
10491049$rootConfigHashesByVariant = [ordered ]@ {
10501050 A = @ ($extendedRuns | Where-Object Variant -eq " A" |
10511051 ForEach-Object ConfigSha256 | Sort-Object - Unique)
@@ -1058,7 +1058,8 @@ $rootJvmArgumentsHashesByVariant = [ordered]@{
10581058 B = @ ($extendedRuns | Where-Object Variant -eq " B" |
10591059 ForEach-Object JvmArgumentsSha256 | Sort-Object - Unique)
10601060}
1061- $rootNormalizedJvmHashes = @ ($extendedRuns.JvmArgumentsNormalizedSha256 | Sort-Object - Unique)
1061+ $rootNormalizedJvmHashes = @ ($extendedRuns | ForEach-Object JvmArgumentsNormalizedSha256 |
1062+ Sort-Object - Unique)
10621063$rootNormalizedJvmHash = if ($rootNormalizedJvmHashes.Count -eq 1 ) {
10631064 $rootNormalizedJvmHashes [0 ]
10641065} else {
You can’t perform that action at this time.
0 commit comments