From 4ebbdb284b662604748daa813a17a34293a564ba Mon Sep 17 00:00:00 2001 From: cod378 Date: Mon, 3 Nov 2025 01:26:28 +0000 Subject: [PATCH] refactor: switch from remote URLs to local script execution --- scripts/post_install/uninstall-tools.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/post_install/uninstall-tools.sh b/scripts/post_install/uninstall-tools.sh index 036616c..50f8427 100644 --- a/scripts/post_install/uninstall-tools.sh +++ b/scripts/post_install/uninstall-tools.sh @@ -20,8 +20,8 @@ # ========================================================== -REPO_URL="https://raw.githubusercontent.com/MacRimi/ProxMenux/main" -RETURN_SCRIPT="$REPO_URL/scripts/menus/menu_post_install.sh" +LOCAL_SCRIPTS="/usr/local/share/proxmenux/scripts" +RETURN_SCRIPT="$LOCAL_SCRIPTS/menus/menu_post_install.sh" BASE_DIR="/usr/local/share/proxmenux" UTILS_FILE="$BASE_DIR/utils.sh" TOOLS_JSON="$BASE_DIR/installed_tools.json"