Merge pull request #260 from Tsquash/PSscript

Issue #210 Document Setup.ps
This commit is contained in:
Pete Johanson 2020-10-12 10:50:31 -04:00 committed by GitHub
commit 0d893e5fd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -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)"
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>