From bef2ebcb5a8a6d0fc31c24954c2b3f8b7f768e09 Mon Sep 17 00:00:00 2001 From: Matt Gucci Date: Sat, 26 Nov 2022 11:47:26 +0900 Subject: [PATCH] Fix error: PowerShell environment variable setting Required to be surrounded by `'` or `"`. --- engine/context/working-with-contexts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/context/working-with-contexts.md b/engine/context/working-with-contexts.md index 5fcdb74b3c..eeb0bf382f 100644 --- a/engine/context/working-with-contexts.md +++ b/engine/context/working-with-contexts.md @@ -155,7 +155,7 @@ Use the appropriate command below to set the context to `docker-test` using an e Windows PowerShell: ```console -> $Env:DOCKER_CONTEXT=docker-test +> $env:DOCKER_CONTEXT='docker-test' ``` Linux: