mirror of
https://github.com/Alex313031/thorium.git
synced 2025-01-09 11:27:32 -03:00
Add printf color echos
This commit is contained in:
parent
aa8e0d3266
commit
6f81246c13
1 changed files with 11 additions and 1 deletions
12
clean.sh
12
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
|
||||
|
|
Loading…
Reference in a new issue