Cleanbuild for python-materialyoucolor-git (#428)

This commit is contained in:
clsty
2024-04-29 07:30:31 +08:00
parent 83242a9748
commit 73ddd02931
3 changed files with 20 additions and 2 deletions
+3 -1
View File
@@ -17,6 +17,7 @@ If no option is specified, run default install process.
--skip-ags Skip installing ags and its config
--skip-hyprland Skip installing the config for Hyprland
--skip-hypr-aur Skip installing hyprland-git
--skip-pymyc-aur Skip installing python-materialyoucolor-git
--skip-fish Skip installing the config for Fish
--skip-plasmaintg Skip installing plasma-browser-integration
--skip-miscconf Skip copying the dirs and files to \".configs\" except for AGS, Fish and Hyprland
@@ -32,7 +33,7 @@ cleancache(){
# `man getopt` to see more
para=$(getopt \
-o hfk:cs \
-l help,force,fontset:,deplistfile:,clean,skip-sysupdate,skip-ags,skip-fish,skip-hyprland,skip-hypr-aur,skip-plasmaintg,skip-miscconf \
-l help,force,fontset:,deplistfile:,clean,skip-sysupdate,skip-ags,skip-fish,skip-hyprland,skip-hypr-aur,skip-pymyc-aur,skip-plasmaintg,skip-miscconf \
-n "$0" -- "$@")
[ $? != 0 ] && echo "$0: Error when getopt, please recheck parameters." && exit 1
#####################################################################################
@@ -62,6 +63,7 @@ while true ; do
--skip-ags) SKIP_AGS=true;shift;;
--skip-hyprland) SKIP_HYPRLAND=true;shift;;
--skip-hypr-aur) SKIP_HYPR_AUR=true;shift;;
--skip-pymyc-aur) SKIP_PYMYC_AUR=true;shift;;
--skip-fish) SKIP_FISH=true;shift;;
--skip-miscconf) SKIP_MISCCONF=true;shift;;
--skip-plasmaintg) SKIP_PLASMAINTG=true;shift;;