Add printf color echos

This commit is contained in:
Alexander David Frick 2022-04-09 03:39:58 -05:00 committed by GitHub
parent aa8e0d3266
commit 6f81246c13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,15 @@
#!/bin/bash
# run from within out/Default or wherever you put your build, or cd there first
# Copy and run from within out/thorium or wherever you put your build, or cd there first!
# i.e. cd /home/alex/bin/chromium-dev/
YEL='\033[1;33m' # Yellow
printf "\n" &&
printf "${YEL}Cleaning up build artifacts...\n" &&
printf "\n" &&
tput sgr0 &&
find . -name "*deps*" -delete
find . -name "*TOC*" -delete
rm -r pyproto
@ -18,4 +25,7 @@ rm -r clang_newlib_x64
rm -r thinlto-cache
rm -r fontconfig_caches
printf "${YEL}Done!\n" &&
tput sgr0
exit 0