Tweak desktop instructions (#3069)
to make it clear you need to do all the things in 'building from source', including the build-react-sdk dance if you're building develop.
This commit is contained in:
parent
ba5e7d4013
commit
3c91f90dc9
14
README.md
14
README.md
|
@ -113,10 +113,12 @@ pre-built version from https://riot.im/desktop.html or, if you prefer,
|
||||||
built it yourself.
|
built it yourself.
|
||||||
|
|
||||||
To run as a desktop app:
|
To run as a desktop app:
|
||||||
|
|
||||||
|
1. Follow the instructions in 'Building From Source' above
|
||||||
|
2. Install electron and run it:
|
||||||
|
|
||||||
```
|
```
|
||||||
npm install
|
|
||||||
npm install electron
|
npm install electron
|
||||||
npm run build
|
|
||||||
node_modules/.bin/electron .
|
node_modules/.bin/electron .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -141,11 +143,9 @@ npm run build:electron
|
||||||
|
|
||||||
For other packages, use electron-builder manually. For example, to build a package
|
For other packages, use electron-builder manually. For example, to build a package
|
||||||
for 64 bit Linux:
|
for 64 bit Linux:
|
||||||
```
|
|
||||||
npm install
|
1. Follow the instructions in 'Building From Source' above
|
||||||
npm run build
|
2. `node_modules/.bin/build -l --x64`
|
||||||
node_modules/.bin/build -l --x64
|
|
||||||
```
|
|
||||||
|
|
||||||
All electron packages go into `electron/dist/`
|
All electron packages go into `electron/dist/`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue