Skip to content

Commit

Permalink
update quick-start install docs following readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
BenTheElder committed Aug 20, 2019
1 parent d941c80 commit 5b6f4c5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions site/content/docs/user/quick-start.md
Expand Up @@ -31,16 +31,16 @@ generally recommended for CI usage in particular.
To install, download the binary for your platform from "Assets" and place this
into your `$PATH`.

E.G. for macOS:
On macOS / Linux:

```bash
curl -Lo ./kind-darwin-amd64 https://github.com/kubernetes-sigs/kind/releases/download/v0.4.0/kind-darwin-amd64
chmod +x ./kind-darwin-amd64
mv ./kind-darwin-amd64 /some-dir-in-your-PATH/kind
curl -Lo ./kind https://github.com/kubernetes-sigs/kind/releases/download/v0.4.0/kind-$(uname)-amd64
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind
```


E.G. for Windows:
On Windows:

```powershell
curl.exe -Lo kind-windows-amd64.exe https://github.com/kubernetes-sigs/kind/releases/download/v0.4.0/kind-windows-amd64
Expand Down

0 comments on commit 5b6f4c5

Please sign in to comment.