From 2eed3704adff58cd8a58d0081dcb9bae3225d6b2 Mon Sep 17 00:00:00 2001 From: azadeh khojandi Date: Tue, 18 Jun 2019 16:24:51 +1000 Subject: [PATCH] Add missing line to copy the svcat.exe into bin folder minor fix, copy and paste of the PowerShell script should install Service Catalog CLI --- docs/install.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/install.md b/docs/install.md index 5761475760c..9408d3e08d4 100644 --- a/docs/install.md +++ b/docs/install.md @@ -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 ```