From fd9ce74bd481a0847f81bd90df1bb7b11f97c3b3 Mon Sep 17 00:00:00 2001 From: Christian Danielsen Date: Thu, 30 Nov 2017 10:38:55 -0800 Subject: [PATCH] use safer/more aesthetic syntax --- packages/react-scripts/template/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-scripts/template/README.md b/packages/react-scripts/template/README.md index c8bd3911fdc..8130244baea 100644 --- a/packages/react-scripts/template/README.md +++ b/packages/react-scripts/template/README.md @@ -890,10 +890,10 @@ life of the shell session. #### Windows (cmd.exe) ```cmd -set REACT_APP_SECRET_CODE=abcdef&&npm start +set "REACT_APP_SECRET_CODE=abcdef" && npm start ``` -(Note: the lack of whitespace is intentional.) +(Note: Quotes around the variable assignment are required to avoid a trailing whitepsace.) #### Linux, macOS (Bash)