Commit 6b1e7f5 1 parent 3024e8e commit 6b1e7f5 Copy full SHA for 6b1e7f5
File tree 1 file changed +10
-1
lines changed
images/linux/scripts/SoftwareReport
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ $markdown += New-MDList -Style Unordered -Lines @(
49
49
)
50
50
51
51
$markdown += New-MDHeader " Package Management" - Level 3
52
- $markdown += New-MDList - Style Unordered - Lines @ (
52
+
53
+ $packageManagementList = @ (
53
54
(Get-HomebrewVersion ),
54
55
(Get-GemVersion ),
55
56
(Get-MinicondaVersion ),
@@ -62,6 +63,14 @@ $markdown += New-MDList -Style Unordered -Lines @(
62
63
(Get-VcpkgVersion )
63
64
)
64
65
66
+ if (-not (Test-IsUbuntu16 )) {
67
+ $packageManagementList += @ (
68
+ (Get-PipxVersion )
69
+ )
70
+ }
71
+
72
+ $markdown += New-MDList - Style Unordered - Lines ($packageManagementList | Sort-Object )
73
+
65
74
$markdown += New-MDHeader " Project Management" - Level 3
66
75
$markdown += New-MDList - Style Unordered - Lines @ (
67
76
(Get-AntVersion ),
You can’t perform that action at this time.
0 commit comments