summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2020-11-11 18:39:13 -0500
committerDaniel Micay <danielmicay@gmail.com>2020-11-11 18:39:13 -0500
commit880d6477ab729449c5eb05b6fdb0c975e6c69854 (patch)
tree9d9f00e42729b84a39ddfa856499cd41b122003c
parent1a8bb04a8c4b1678a183f092afa4960ea55b148b (diff)
improve Chromium sync instructions
-rw-r--r--static/build.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/static/build.html b/static/build.html
index a325a2b2..8f5598f3 100644
--- a/static/build.html
+++ b/static/build.html
@@ -764,12 +764,14 @@ git checkout $CORRECT_BRANCH_OR_TAG</pre>
<p>Sync to the latest stable release for Android (replace $VERSION with the correct
value):</p>
- <pre>gclient sync -D --with_branch_heads --with_tags -r $VERSION --jobs 32</pre>
+ <pre>cd src
+git fetch --tags
+git checkout $VERSION
+gclient sync -D --with_branch_heads --with_tags --jobs 32</pre>
<p>Apply the GrapheneOS patches on top of the tagged release:</p>
- <pre>cd src
-git am --whitespace=nowarn ../patches/*.patch</pre>
+ <pre>git am --whitespace=nowarn ../patches/*.patch</pre>
<p>Then, configure the build in the <code>src</code> directory:</p>