Skip to content

Commit d644044

Browse files
authored
Merge pull request #80336 from jeffdav/win-build-summary-sort
utils: Fix build.ps1 summary sorting.
2 parents b7943bb + 92b0849 commit d644044

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ function Write-Summary {
494494
"Elapsed Time" = $FormattedTime
495495
"%" = "$Percentage%"
496496
}
497-
} | Sort-Object -Descending -Property "%"
497+
} | Sort-Object -Descending -Property "Elapsed Time"
498498

499499
$FormattedTotalTime = "{0:hh\:mm\:ss\.ff}" -f $TotalTime
500500
$TotalRow = [PSCustomObject]@{

0 commit comments

Comments
 (0)