You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
440 B
Bash

function cache_clean() {
clear
print_process_banner "CLEANING CACHE..." "$LBROWN$BLINK"
rm -f -r .chug/.cache/npm/*/
rm -f -r .chug/.cache/mvn/*/
find .chug/.cache/npm -type f -not -name '.gitkeep' -delete
find .chug/.cache/mvn -type f -not -name '.gitkeep' -delete
rm -f -r .chug/.cache/npm/.bin
print_process_banner "ALL YOUR CACHE SHIT IS DEEP DOWN IN DIGITAL VALHALLA" ""
}
CHUG_COMMAND_SET["cache_clean"]="cache_clean"