From fd9eedccff101d4f425deb7ac820b284af7a1423 Mon Sep 17 00:00:00 2001 From: Alexander David Frick Date: Sat, 9 Apr 2022 01:19:50 -0500 Subject: [PATCH] Add echos --- trunk.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/trunk.sh b/trunk.sh index 8db73d26..c410e3bd 100644 --- a/trunk.sh +++ b/trunk.sh @@ -1,5 +1,7 @@ #!/bin/bash +echo "Rebasing/Syncing and running hooks..." && + cd $HOME/chromium/src/v8/ && git checkout -f origin/main && @@ -16,10 +18,16 @@ gclient sync --with_branch_heads --with_tags -f -R -D && gclient runhooks && +echo "Done!" && + +echo "Downloading PGO Profiles for Linux, Windows, and Mac..." && + python 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 && python tools/update_pgo_profiles.py --target=mac update --gs-url-base=chromium-optimization-profiles/pgo_profiles && +echo "Done! You can now run ./setup.sh." + exit 0