fix installer

This commit is contained in:
2025-09-10 12:15:37 +02:00
parent 7af6a851a0
commit 177cce7326

View File

@@ -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