prefer sh to bash in the docs

This commit is contained in:
Charles Kerr 2017-11-24 11:13:57 +01:00
parent c18afc924b
commit 1b0c1842ca
16 changed files with 87 additions and 81 deletions

View file

@ -47,7 +47,7 @@ can switch the download address to it via
If you only want to build Electron quickly for testing or development, you
can download just the shared library versions by passing the `--dev` parameter:
```bash
```sh
$ ./script/bootstrap.py --dev
$ ./script/build.py -c D
```
@ -76,20 +76,20 @@ you are not affected.
Test your changes conform to the project coding style using:
```bash
```sh
$ npm run lint
```
Test functionality using:
```bash
```sh
$ npm test
```
Whenever you make changes to Electron source code, you'll need to re-run the
build before the tests:
```bash
```sh
$ npm run build && npm test
```
@ -117,6 +117,6 @@ details), but they will work with the release build.
To run the tests with the release build use:
```bash
```sh
$ npm test -- -R
```