From 8f0003b5c983eef21f7a5176e3e44d257906ed2c Mon Sep 17 00:00:00 2001 From: Alexander David Frick Date: Mon, 11 Apr 2022 10:46:23 -0500 Subject: [PATCH] Update trunk.sh --- trunk.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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