From 45f4ffc03a98359dd41c0a526dfcfa590cf0ceb4 Mon Sep 17 00:00:00 2001 From: Tsquash Date: Sat, 10 Oct 2020 13:03:34 -0500 Subject: [PATCH 1/2] added PowerShell setup Command --- docs/docs/user-setup.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/docs/user-setup.md b/docs/docs/user-setup.md index 2aade829..e069a14a 100644 --- a/docs/docs/user-setup.md +++ b/docs/docs/user-setup.md @@ -63,6 +63,7 @@ defaultValue="curl" values={[ {label: 'Using curl', value: 'curl'}, {label: 'Using wget', value: 'wget'}, +{label: 'Using PowerShell', value: 'PowerShell'}, ]}> @@ -77,6 +78,12 @@ bash -c "$(curl -fsSL https://zmkfirmware.dev/setup.sh)" bash -c "$(wget https://zmkfirmware.dev/setup.sh -O -)" ``` + + + +``` +iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/CrossR/zmk/CrossR/ShellScriptTidyUp/docs/static/setup.ps1'))" +``` From d79811dd6118357e88ffc6b35b46589799a0c79d Mon Sep 17 00:00:00 2001 From: Tsquash Date: Sat, 10 Oct 2020 14:39:12 -0500 Subject: [PATCH 2/2] Changed setup script url --- docs/docs/user-setup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/user-setup.md b/docs/docs/user-setup.md index e069a14a..2785096d 100644 --- a/docs/docs/user-setup.md +++ b/docs/docs/user-setup.md @@ -82,7 +82,7 @@ bash -c "$(wget https://zmkfirmware.dev/setup.sh -O -)" ``` -iex ((New-Object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/CrossR/zmk/CrossR/ShellScriptTidyUp/docs/static/setup.ps1'))" +iex ((New-Object System.Net.WebClient).DownloadString('https://zmkfirmware.dev/setup.ps1'))" ```