From fd9ce74bd481a0847f81bd90df1bb7b11f97c3b3 Mon Sep 17 00:00:00 2001 From: Christian Danielsen Date: Thu, 30 Nov 2017 10:38:55 -0800 Subject: [PATCH 1/2] 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) From a7c9c944a248b61a5a3ce3892a9fb7e06c1a64ba Mon Sep 17 00:00:00 2001 From: Christian Danielsen Date: Mon, 11 Dec 2017 10:53:28 -0800 Subject: [PATCH 2/2] fix typo --- 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 8130244baea..0d882a234b8 100644 --- a/packages/react-scripts/template/README.md +++ b/packages/react-scripts/template/README.md @@ -893,7 +893,7 @@ life of the shell session. set "REACT_APP_SECRET_CODE=abcdef" && npm start ``` -(Note: Quotes around the variable assignment are required to avoid a trailing whitepsace.) +(Note: Quotes around the variable assignment are required to avoid a trailing whitespace.) #### Linux, macOS (Bash)