mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-10 20:04:12 -03:00
21 lines
382 B
Bash
21 lines
382 B
Bash
#!/bin/bash
|
|
|
|
cd $HOME/chromium/src/v8/ &&
|
|
|
|
git checkout -f origin/main &&
|
|
|
|
cd $HOME/chromium/src &&
|
|
|
|
git checkout -f origin/main &&
|
|
|
|
git rebase-update &&
|
|
|
|
git fetch --tags &&
|
|
|
|
gclient sync --with_branch_heads --with_tags -f -R -D &&
|
|
|
|
gclient runhooks &&
|
|
|
|
python tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
|
|
|
|
exit 0
|