Skip to content

Commit 825e4d2

Browse files
authored
Merge pull request #2645 from pauleHeisster/add_scoop_installation
Scoop installation
2 parents f9af41a + 344ecbc commit 825e4d2

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

docs/pages/_partials/install-cli.mdx

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ DevSpace is a client-only binary. It is super lightweight, does not require any
1212
{ label: 'brew', value: 'brew', },
1313
{ label: 'Mac', value: 'mac', },
1414
{ label: 'Linux', value: 'linux', },
15-
{ label: 'Windows Powershell', value: 'windows', },
15+
{ label: 'Windows Powershell', value: 'windows-ps', },
16+
{ label: 'Windows Scoop', value: 'windows-scoop', },
1617
]
1718
}>
1819
<TabItem value="npm">
@@ -58,15 +59,22 @@ curl -L -o devspace "https://github.com/loft-sh/devspace/releases/latest/downloa
5859
```
5960

6061
</TabItem>
61-
<TabItem value="windows">
62+
<TabItem value="windows-ps">
6263

63-
```powershell {4}
64+
```powershell
6465
md -Force "$Env:APPDATA\devspace"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';
6566
Invoke-WebRequest -URI "https://github.com/loft-sh/devspace/releases/latest/download/devspace-windows-amd64.exe" -o $Env:APPDATA\devspace\devspace.exe;
6667
$env:Path += ";" + $Env:APPDATA + "\devspace";
6768
[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);
6869
```
6970

71+
</TabItem>
72+
<TabItem value="windows-scoop">
73+
74+
```powershell
75+
scoop install devspace
76+
```
77+
7078
</TabItem>
7179
</Tabs>
7280

0 commit comments

Comments
 (0)