From dc46e5f12e08edcb95fccd6e1894e66c779f2970 Mon Sep 17 00:00:00 2001 From: KOWX712 Date: Mon, 16 Dec 2024 02:38:54 +0800 Subject: [PATCH] Remove restriction on installation But module will still removed automatically if tricky store module not found to keep the convenient for user to remove webui when uninstalling tricky store. --- module/customize.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/module/customize.sh b/module/customize.sh index c1f31ad..abc07f0 100644 --- a/module/customize.sh +++ b/module/customize.sh @@ -23,10 +23,7 @@ else abort " "; fi -if [ ! -d "$TS" ]; then - ui_print "! Tricky store module is not installed" - abort -fi +[ -d "$TS" ] || ui_print "! Warning: Tricky store module not found" . "$MODPATH/install_func.sh"