We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1f592f4 + e431983 commit 5138f72Copy full SHA for 5138f72
metadata.json
@@ -71,7 +71,8 @@
71
"operatingsystem": "Ubuntu",
72
"operatingsystemrelease": [
73
"18.04",
74
- "20.04"
+ "20.04",
75
+ "22.04"
76
]
77
},
78
{
spec/fixtures/scripts/install_pwsh/ubuntu_22.04.sh
@@ -0,0 +1,17 @@
1
+# Download the Microsoft repository GPG keys
2
+wget -q https://packages.microsoft.com/config/ubuntu/22.04/packages-microsoft-prod.deb
3
+
4
+# Register the Microsoft repository GPG keys
5
+dpkg -i packages-microsoft-prod.deb
6
7
+# Update the list of products
8
+apt-get update
9
10
+# Enable the "universe" repositories
11
+add-apt-repository universe
12
13
+# Install PowerShell
14
+apt-get install -y powershell
15
16
+# List version
17
+pwsh -v
0 commit comments