From 6bcb5341daf8eb79843083612e0df9082dd622dd Mon Sep 17 00:00:00 2001 From: SamNet-dev Date: Wed, 4 Feb 2026 18:25:19 -0600 Subject: [PATCH] fix: remove confusing switch-backend message (#20) Removed the misleading "Both backends remain installed" line from the switch_backend confirmation dialog. The remaining messages "Stop X" and "Start Y" already clearly explain what happens. --- paqctl.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/paqctl.sh b/paqctl.sh index 2a197b2..e42dbe9 100644 --- a/paqctl.sh +++ b/paqctl.sh @@ -5086,7 +5086,6 @@ switch_backend() { echo " This will:" echo " - Stop ${current_backend}" echo " - Start ${new_backend}" - echo " - Both backends remain installed" echo "" read -p " Proceed? [y/N]: " confirm < /dev/tty || true [[ "$confirm" =~ ^[Yy]$ ]] || { log_info "Cancelled"; return 0; }