Skip to content

Commit

Permalink
use safer/more aesthetic syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
cdanielsen committed Nov 30, 2017
1 parent 9af0422 commit fd9ce74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-scripts/template/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit fd9ce74

Please sign in to comment.