Fix Powershell script issue (#12858)

Fix syntax issue of Powershell script, update environment key to KUBECONFIG
This commit is contained in:
YouenZeng
2019-03-08 06:50:13 +08:00
committed by Kubernetes Prow Robot
parent 273f3fa713
commit d88352b000
@@ -277,7 +277,7 @@ export KUBECONFIG=$KUBECONFIG:config-demo:config-demo-2
```
### Windows PowerShell
```shell
$Env:KUBECONFIG_SAVED=(config-demo;config-demo-2)
$Env:KUBECONFIG=("config-demo;config-demo-2")
```
In your `config-exercise` directory, enter this command: