Skip to content

Commit 8835528

Browse files
🩹 [Patch]: Sort installed PowerShell resources by name for improved readability
1 parent 06a4de3 commit 8835528

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎scripts/main.ps1‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ $providedPrivateKey = -not [string]::IsNullOrEmpty($env:GITHUB_ACTION_INPUT_Priv
5959
'::endgroup::'
6060

6161
LogGroup 'GitHub-Script - Installed modules' {
62-
Get-InstalledPSResource | Select-Object Name, Version, Prerelease | Format-Table -AutoSize
62+
Get-InstalledPSResource | Select-Object Name, Version, Prerelease | Sort-Object -Property Name | Format-Table -AutoSize
6363
}
6464

6565
if ($providedClientID -and $providedPrivateKey) {

0 commit comments

Comments
 (0)