From c52cdc6280c2fd00c46a80b85aeae3ffa162f32a Mon Sep 17 00:00:00 2001 From: Gavin Barron Date: Sun, 14 Oct 2018 11:30:45 -0700 Subject: [PATCH] Correct instructions for HTTPS and PowerShell (#5394) Current instructions for running using HTTPS in a PowerShell prompt are incorrect and do not work on Windows 10 v1809 --- packages/react-scripts/template/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-scripts/template/README.md b/packages/react-scripts/template/README.md index 60acc106..156173f5 100644 --- a/packages/react-scripts/template/README.md +++ b/packages/react-scripts/template/README.md @@ -1242,7 +1242,7 @@ set HTTPS=true&&npm start #### Windows (Powershell) ```Powershell -($env:HTTPS = $true) -and (npm start) +($env:HTTPS = "true") -and (npm start) ``` #### Linux, macOS (Bash)