Update trunk.sh

This commit is contained in:
Alexander David Frick 2022-04-11 10:46:23 -05:00 committed by GitHub
parent e76a9bdb53
commit 8f0003b5c9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,7 @@
#!/bin/bash
# Copyright (c) 2022 Alex313031 and Midzer
YEL='\033[1;33m' # Yellow
printf "\n" &&
@ -29,15 +31,15 @@ printf "${YEL}Downloading PGO Profiles for Linux, Windows, and Mac...\n" &&
printf "\n" &&
tput sgr0 &&
python tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
python3 tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
python tools/update_pgo_profiles.py --target=win64 update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
python3 tools/update_pgo_profiles.py --target=win64 update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
python tools/update_pgo_profiles.py --target=mac update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
python3 tools/update_pgo_profiles.py --target=mac update --gs-url-base=chromium-optimization-profiles/pgo_profiles &&
printf "\n" &&
printf "${YEL}Done! You can now run ./setup.sh.\n"
printf "${YEL}Done! You can now run ./setup.sh.\n"
tput sgr0
exit 0