From 177cce73265096ae7df849384ae28802dd1b8a91 Mon Sep 17 00:00:00 2001 From: Tomi Eckert Date: Wed, 10 Sep 2025 12:15:37 +0200 Subject: [PATCH] fix installer --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 5747cbe..a9b6b20 100644 --- a/install.sh +++ b/install.sh @@ -104,7 +104,8 @@ PS3="Please enter your choice: " # Display the menu and handle user input. # Setting COLUMNS=1 forces the select menu to display vertically. -COLUMNS=1 select choice_with_status in "${options[@]}"; do +COLUMNS=1 +select choice_with_status in "${options[@]}"; do # Strip the status message from the choice for key lookup choice=$(echo "${choice_with_status}" | sed 's/ (.*//') @@ -182,3 +183,4 @@ COLUMNS=1 select choice_with_status in "${options[@]}"; do esac done +