Skip to content

Commit 0a07110

Browse files
authored
add command for updating third_party (Igalia#893)
* add command for updating `third_party` compilation errors are thrown if the developer's checkout of the third-party repo (in their `third_party` directory) is not up to date. this command fixes that. * fix URL in README for `third_party` * tweak git command for `third_party` (per @bluemarvin's feedback) notice the `git checkout origin/master` in case `third_party` was checked out to a different branch/sha
1 parent 95098ff commit 0a07110

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ This repo is only available to Mozilla employees. If you have access to the rele
4141
- `third_party/svr/` for Snapdragon (should contain a `libs` folder, among other things)
4242
- `third_party/wavesdk/` for Vive (should contain a `build` folder, among other things)
4343

44+
The [repo in `third_party`](https://github.com/MozillaReality/FirefoxReality-android-third-party) can be updated like so:
45+
46+
```bash
47+
pushd third_party && git fetch && git rebase origin/master && git checkout origin/master && popd
48+
```
4449

4550
*Fetch Git submodules.*
4651

0 commit comments

Comments
 (0)