Skip to content

Commit d13ae7a

Browse files
authored
Fixed configure-access-multiple-clusters.md
I fixed a Powershell command that you had provided in this document. Attempting to run the command with the format you supplied resulted in errors due to some conflict between using backwards slash for pathnames inside of parentheses.
1 parent 652e361 commit d13ae7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/en/docs/tasks/access-application-cluster/configure-access-multiple-clusters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ export KUBECONFIG=$KUBECONFIG:$HOME/.kube/config
346346
```
347347
### Windows Powershell
348348
```shell
349-
$Env:KUBECONFIG=($Env:KUBECONFIG;$HOME/.kube/config)
349+
$Env:KUBECONFIG="$Env:KUBECONFIG;$HOME\.kube\config"
350350
```
351351

352352
View configuration information merged from all the files that are now listed

0 commit comments

Comments
 (0)