docs: add --recursive to the project clone command

This commit is contained in:
qoijjj 2023-09-18 23:35:10 -07:00 committed by Payton Quinn
parent 3351465f2b
commit 58d01f3a77
6 changed files with 12 additions and 5 deletions

View File

@ -42,7 +42,7 @@ $ export PATH="$PATH:${HOME}/depot_tools" or $ export PATH="$PATH:/home/alex/dep
Clone the Thorium repo into *$HOME*
```shell
$ git clone https://github.com/Alex313031/thorium.git
$ git clone --recursive https://github.com/Alex313031/thorium.git
```
### Chromium Code

View File

@ -38,6 +38,13 @@ Are you a Google employee? See
version of the macOS SDK on it.
* An APFS-formatted volume (this is the default format for macOS volumes).
## Downloading the Thorium code
Using Git:
```shell
git clone --recursive https://github.com/Alex313031/thorium.git
```
## Install `depot_tools`
Clone the `depot_tools` repository:

View File

@ -166,7 +166,7 @@ You can either use git clone, or download a .zip from the repo. It should be pla
Using Git:
```shell
git clone https://github.com/Alex313031/thorium.git
git clone --recursive https://github.com/Alex313031/thorium.git
```
Or download the .zip (Make sure to rename the extracted dir to just thorium, not thorium-main).
[https://github.com/Alex313031/thorium/archive/refs/heads/main.zip](https://github.com/Alex313031/thorium/archive/refs/heads/main.zip)

View File

@ -60,7 +60,7 @@ And place it in ~/chromium/win
Now, lets download the Thorium tree, so run (in $HOME)
git clone https://github.com/Alex313031/Thorium.git OR
git clone --recursive https://github.com/Alex313031/Thorium.git OR
Download the latest .zip > https://github.com/Alex313031/Thorium/archive/refs/heads/main.zip

View File

@ -71,7 +71,7 @@ Good, now we have a full Chromium checkout ready to be built, but to turn it int
## Thorium Setup
So, lets download Thorium in C:\src
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
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
Now, go back to C:\chromium\src

View File

@ -32,7 +32,7 @@ cd &&
# Clone repos
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git &&
printf "\n" &&
git clone https://github.com/Alex313031/Thorium.git &&
git clone --recursive https://github.com/Alex313031/Thorium.git &&
# Make Chromium dirs
printf "\n" &&