Merge pull request #9408 from Hum4n01d/patch-1

Fix order of OSs
This commit is contained in:
Kevin Sawicki 2017-05-09 08:57:03 -07:00 committed by GitHub
commit aa212bd955

View file

@ -192,10 +192,10 @@ $ .\node_modules\.bin\electron .
If you downloaded Electron manually, you can also use the included If you downloaded Electron manually, you can also use the included
binary to execute your app directly. binary to execute your app directly.
#### Windows #### macOS
```bash ```bash
$ .\electron\electron.exe your-app\ $ ./Electron.app/Contents/MacOS/Electron your-app/
``` ```
#### Linux #### Linux
@ -204,10 +204,10 @@ $ .\electron\electron.exe your-app\
$ ./electron/electron your-app/ $ ./electron/electron your-app/
``` ```
#### macOS #### Windows
```bash ```bash
$ ./Electron.app/Contents/MacOS/Electron your-app/ $ .\electron\electron.exe your-app\
``` ```
`Electron.app` here is part of the Electron's release package, you can download `Electron.app` here is part of the Electron's release package, you can download