Skip to content
This repository has been archived by the owner on May 6, 2022. It is now read-only.

Commit

Permalink
Add missing line to copy the svcat.exe into bin folder (#2665)
Browse files Browse the repository at this point in the history
minor fix,  copy and paste of the PowerShell script should install Service Catalog CLI
  • Loading branch information
Azadehkhojandi authored and k8s-ci-robot committed Jul 10, 2019
1 parent cc2bfbe commit bbfb9e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,12 +213,13 @@ svcat version --client

## Windows

The snippet below adds a directory to your PATH for the current session only.
The PowerShell snippet below adds a directory to your PATH for the current session only.
You will need to find a permanent location for it and add it to your PATH.

```
iwr 'https://download.svcat.sh/cli/latest/windows/amd64/svcat.exe' -UseBasicParsing -OutFile svcat.exe
mkdir -f ~\bin
Move-Item -Path svcat.exe -Destination ~\bin
$env:PATH += ";${pwd}\bin"
svcat version --client
```
Expand Down

0 comments on commit bbfb9e9

Please sign in to comment.