diff --git a/clean.sh b/clean.sh index 66cf9ad7..8c27a389 100644 --- a/clean.sh +++ b/clean.sh @@ -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