diff --git a/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 b/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 index 1dd6a137..8e1560ee 100644 --- a/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 +++ b/images/win/scripts/SoftwareReport/SoftwareReport.Common.psm1 @@ -45,11 +45,11 @@ function Get-CbindgenVersion { return cbindgen --version } -function Get-CargoauditVersion { +function Get-CargoAuditVersion { return cargo audit --version } -function Get-CargooutdatedVersion { +function Get-CargoOutdatedVersion { return cargo outdated --version } diff --git a/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 b/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 index 7795c139..ef4af8f3 100644 --- a/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 +++ b/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 @@ -38,14 +38,6 @@ $markdown += New-MDList -Style Unordered -Lines @( (Get-NodeVersion) ) -$markdown += New-MDHeader "Rust packages:" -Level 3 -$markdown += New-MDList -Style Unordered -Lines @( - (Get-BindgenVersion), - (Get-CbindgenVersion), - (Get-CargoauditVersion), - (Get-CargooutdatedVersion) -) - $markdown += New-MDHeader "Package Management" -Level 3 $markdown += New-MDList -Style Unordered -Lines @( (Get-ChocoVersion), @@ -114,6 +106,14 @@ $markdown += New-MDList -Style Unordered -Lines @( (Get-GoogleCloudSDKVersion) ) +$markdown += New-MDHeader "Rust packages:" -Level 3 +$markdown += New-MDList -Style Unordered -Lines @( + (Get-BindgenVersion), + (Get-CbindgenVersion), + (Get-CargoAuditVersion), + (Get-CargoOutdatedVersion) +) + $markdown += New-MDHeader "Browsers and webdrivers" -Level 3 $markdown += New-MDList -Style Unordered -Lines @( (Get-BrowserVersion -Browser "chrome"),