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 +