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
This commit is contained in:
Gavin Barron
2018-10-14 11:30:45 -07:00
committed by Dan Abramov
parent bd0ffb72aa
commit c52cdc6280

View File

@@ -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)