Skip to content

Commit 879306b

Browse files
authored
Merge pull request #220 from qoijjj/patch-1
docs: add --recursive to the project clone command
2 parents 3351465 + 58d01f3 commit 879306b

6 files changed

+12
-5
lines changed

docs/BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $ export PATH="$PATH:${HOME}/depot_tools" or $ export PATH="$PATH:/home/alex/dep
4242
Clone the Thorium repo into *$HOME*
4343

4444
```shell
45-
$ git clone https://github.com/Alex313031/thorium.git
45+
$ git clone --recursive https://github.com/Alex313031/thorium.git
4646
```
4747

4848
### Chromium Code

docs/BUILDING_MAC.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ Are you a Google employee? See
3838
version of the macOS SDK on it.
3939
* An APFS-formatted volume (this is the default format for macOS volumes).
4040

41+
## Downloading the Thorium code
42+
Using Git:
43+
44+
```shell
45+
git clone --recursive https://github.com/Alex313031/thorium.git
46+
```
47+
4148
## Install `depot_tools`
4249

4350
Clone the `depot_tools` repository:

docs/BUILDING_WIN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ You can either use git clone, or download a .zip from the repo. It should be pla
166166
Using Git:
167167

168168
```shell
169-
git clone https://github.com/Alex313031/thorium.git
169+
git clone --recursive https://github.com/Alex313031/thorium.git
170170
```
171171
Or download the .zip (Make sure to rename the extracted dir to just thorium, not thorium-main).
172172
[https://github.com/Alex313031/thorium/archive/refs/heads/main.zip](https://github.com/Alex313031/thorium/archive/refs/heads/main.zip)

docs/WIN_CROSS_BUILD_INSTRUCTIONS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ And place it in ~/chromium/win
6060

6161
Now, lets download the Thorium tree, so run (in $HOME)
6262

63-
git clone https://github.com/Alex313031/Thorium.git OR
63+
git clone --recursive https://github.com/Alex313031/Thorium.git OR
6464

6565
Download the latest .zip > https://github.com/Alex313031/Thorium/archive/refs/heads/main.zip
6666

docs/WIN_INSTRUCTIONS.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Good, now we have a full Chromium checkout ready to be built, but to turn it int
7171
## Thorium Setup
7272
So, lets download Thorium in C:\src
7373

74-
git clone https://github.com/Alex313031/Thorium.git or download the .zip and unpack it there > https://github.com/Alex313031/Thorium/archive/refs/heads/main.zip
74+
git clone --recursive https://github.com/Alex313031/Thorium.git or download the .zip and unpack it there > https://github.com/Alex313031/Thorium/archive/refs/heads/main.zip
7575

7676
Now, go back to C:\chromium\src
7777

infra/install_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ cd &&
3232
# Clone repos
3333
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git &&
3434
printf "\n" &&
35-
git clone https://github.com/Alex313031/Thorium.git &&
35+
git clone --recursive https://github.com/Alex313031/Thorium.git &&
3636

3737
# Make Chromium dirs
3838
printf "\n" &&

0 commit comments

Comments
 (0)