Update message

This commit is contained in:
clsty
2025-11-11 09:33:14 +08:00
parent e00e703af2
commit dc958436d8
3 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -34,8 +34,10 @@ function print_os_group_id_unofficial(){
function print_os_group_id_unsupported(){ function print_os_group_id_unsupported(){
printf "${STY_RED}" printf "${STY_RED}"
printf "===CAUTION===\n" printf "===CAUTION===\n"
printf "\"--via-nix\" is forcely specified as the only method to support your distro.\n" printf "\"--via-nix\" is forcely specified \n"
printf "It is still experimental and some functionalities are missing.\n" printf "as the only way to try to install on your distro.\n"
printf "It is still experimental.\n"
printf "Some functionalities are missing.\n"
printf "It may also behave unexpectedly.\n" printf "It may also behave unexpectedly.\n"
printf "Proceed only at your own risk.\n" printf "Proceed only at your own risk.\n"
printf "=============\n\n" printf "=============\n\n"
+2 -2
View File
@@ -73,7 +73,7 @@ case ${SUBCMD_NAME} in
source ${SUBCMD_DIR}/0.greeting.sh source ${SUBCMD_DIR}/0.greeting.sh
fi fi
if [[ "${SKIP_ALLDEPS}" != true ]]; then if [[ "${SKIP_ALLDEPS}" != true ]]; then
source ${SUBCMD_DIR}/1.deps-selector.sh source ${SUBCMD_DIR}/1.deps-router.sh
fi fi
if [[ "${SKIP_ALLSETUPS}" != true ]]; then if [[ "${SKIP_ALLSETUPS}" != true ]]; then
source ${SUBCMD_DIR}/2.setups.sh source ${SUBCMD_DIR}/2.setups.sh
@@ -84,7 +84,7 @@ case ${SUBCMD_NAME} in
;; ;;
install-deps) install-deps)
if [[ "${SKIP_ALLDEPS}" != true ]]; then if [[ "${SKIP_ALLDEPS}" != true ]]; then
source ${SUBCMD_DIR}/1.deps-selector.sh source ${SUBCMD_DIR}/1.deps-router.sh
fi fi
;; ;;
install-setups) install-setups)