Browse Source

Merge pull request #260 from Tsquash/PSscript

Issue #210 Document Setup.ps
xmkb
Pete Johanson 4 years ago committed by GitHub
parent
commit
0d893e5fd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      docs/docs/user-setup.md

7
docs/docs/user-setup.md

@ -63,6 +63,7 @@ defaultValue="curl" @@ -63,6 +63,7 @@ defaultValue="curl"
values={[
{label: 'Using curl', value: 'curl'},
{label: 'Using wget', value: 'wget'},
{label: 'Using PowerShell', value: 'PowerShell'},
]}>
<TabItem value="curl">
@ -77,6 +78,12 @@ bash -c "$(curl -fsSL https://zmkfirmware.dev/setup.sh)" @@ -77,6 +78,12 @@ bash -c "$(curl -fsSL https://zmkfirmware.dev/setup.sh)"
bash -c "$(wget https://zmkfirmware.dev/setup.sh -O -)"
```
</TabItem>
<TabItem value="PowerShell">
```
iex ((New-Object System.Net.WebClient).DownloadString('https://zmkfirmware.dev/setup.ps1'))"
```
</TabItem>
</Tabs>

Loading…
Cancel
Save