Skip to content

Commit 92b0849

Browse files
committed
utils: Fix build.ps1 summary sorting.
1 parent a17cf9b commit 92b0849

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)