Skip to content

Commit fd9ce74

Browse files
committed
use safer/more aesthetic syntax
1 parent 9af0422 commit fd9ce74

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-scripts/template/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -890,10 +890,10 @@ life of the shell session.
890890
#### Windows (cmd.exe)
891891

892892
```cmd
893-
set REACT_APP_SECRET_CODE=abcdef&&npm start
893+
set "REACT_APP_SECRET_CODE=abcdef" && npm start
894894
```
895895

896-
(Note: the lack of whitespace is intentional.)
896+
(Note: Quotes around the variable assignment are required to avoid a trailing whitepsace.)
897897

898898
#### Linux, macOS (Bash)
899899

0 commit comments

Comments
 (0)