From ec220d49f5fcfe57eb9800a2610e42b27ad1a7a1 Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Fri, 29 Aug 2025 17:45:17 +0000 Subject: [PATCH] fix: make installation mode prompt wait for Enter key - Changed mode selection to require Enter instead of single character - Makes behavior consistent with other prompts - Less jarring user experience --- install.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 1e10cd041..406b277a0 100755 --- a/install.sh +++ b/install.sh @@ -167,8 +167,7 @@ create_lxc_container() { echo " 1) Quick (recommended)" echo " 2) Advanced" echo " 3) Cancel" - safe_read "Select [1-3]: " mode -n 1 -r - echo + safe_read_with_default "Select [1-3]: " mode "1" else # No terminal access - truly non-interactive echo "Non-interactive mode detected. Using Quick installation."