diff --git a/trunk.sh b/trunk.sh index b456d761..15738d47 100644 --- a/trunk.sh +++ b/trunk.sh @@ -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