Skip to content

Commit 9314d89

Browse files
committed
fix formatting in upgrading chromium doc
1 parent 6a29577 commit 9314d89

1 file changed

Lines changed: 13 additions & 12 deletions

File tree

docs/development/upgrading-chromium.md

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ This is an overview of the steps needed to upgrade Chromium in Electron.
1212
## Upgrade `libcc` to a new Chromium version
1313

1414
1. Get the code and initialize the project:
15-
- ```sh
15+
```sh
1616
$ git clone git@github.com:electron/libchromiumcontent.git
1717
$ cd libchromiumcontent
18-
$ ./script/bootstrap -v```
18+
$ ./script/bootstrap -v
19+
```
1920
2. Update the Chromium snapshot
2021
- Choose a version number from [OmahaProxy](https://omahaproxy.appspot.com/)
2122
and update the `VERSION` file with it
@@ -47,18 +48,18 @@ This is an overview of the steps needed to upgrade Chromium in Electron.
4748
## Update Electron's code
4849

4950
1. Get the code:
50-
- ```sh
51-
$ git clone git@github.com:electron/electron.git
52-
$ cd electron
53-
```
51+
```sh
52+
$ git clone git@github.com:electron/electron.git
53+
$ cd electron
54+
```
5455
2. If you have libcc built on your machine in its own repo,
5556
tell Electron to use it:
56-
- ```sh
57-
$ ./script/bootstrap.py -v \
58-
--libcc_source_path <libcc_folder>/src \
59-
--libcc_shared_library_path <libcc_folder>/shared_library \
60-
--libcc_static_library_path <libcc_folder>/static_library
61-
```
57+
```sh
58+
$ ./script/bootstrap.py -v \
59+
--libcc_source_path <libcc_folder>/src \
60+
--libcc_shared_library_path <libcc_folder>/shared_library \
61+
--libcc_static_library_path <libcc_folder>/static_library
62+
```
6263
3. If you haven't yet built libcc but it's already supposed to be upgraded
6364
to a new Chromium, bootstrap Electron as usual
6465
`$ ./script/bootstrap.py -v`

0 commit comments

Comments
 (0)