From 65b3a1dfc5166926ba15bd036e7bfd9ded2eea5d Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Sun, 24 Aug 2025 15:29:22 +0000 Subject: [PATCH] debug: add more detailed debug output for RC version selection Adding debug to understand why RC version selection isn't working --- install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/install.sh b/install.sh index 0a622dd5f..d053e950f 100755 --- a/install.sh +++ b/install.sh @@ -959,6 +959,7 @@ main() { # Debug output to see what's happening print_info "DEBUG: You selected option $choice" + print_info "DEBUG: RC_VERSION=$RC_VERSION, STABLE_VERSION=$STABLE_VERSION, CURRENT_VERSION=$CURRENT_VERSION" # Determine what action to take based on the dynamic menu local action="" @@ -977,10 +978,12 @@ main() { # Check if user selected RC update if [[ -n "$RC_VERSION" ]] && [[ "$RC_VERSION" != "$STABLE_VERSION" ]] && [[ "$RC_VERSION" != "$CURRENT_VERSION" ]]; then + print_info "DEBUG: RC section - choice=$choice, current_choice=$current_choice" if [[ "$choice" == "$current_choice" ]]; then action="update" target_version="$RC_VERSION" UPDATE_CHANNEL="rc" + print_info "DEBUG: RC update selected, target=$target_version" fi ((current_choice++)) fi