From 71c31b182a3ba6211d3e1faf524bd665b3a957ec Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 29 Jun 2025 17:59:45 +0200 Subject: [PATCH] Update uninstall-tools.sh --- scripts/uninstall-tools.sh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/scripts/uninstall-tools.sh b/scripts/uninstall-tools.sh index 629400c..6eb91b6 100644 --- a/scripts/uninstall-tools.sh +++ b/scripts/uninstall-tools.sh @@ -47,6 +47,9 @@ migrate_installed_tools() { if [[ -f "$TOOLS_JSON" ]]; then return fi + clear + show_proxmenux_logo + msg_info "$(translate 'Detecting previous adjustments...')" echo "{}" > "$TOOLS_JSON" local updated=false @@ -69,10 +72,11 @@ migrate_installed_tools() { updated=true fi + if [[ "$updated" == true ]]; then - echo "Previous settings detected and migrated to $TOOLS_JSON" - else - echo "No previous settings detected; nothing to migrate." + sleep 2 + msg_ok "$(translate 'Adjustments detected and ready to revert.')" + sleep 1 fi }