Don't think the selector looks quite right, but the remover does

This commit is contained in:
David Heinemeier Hansson 2025-08-26 09:13:22 +02:00
parent 7bf65360f9
commit 7e2d266a9a

View File

@ -14,7 +14,7 @@ if [ "$#" -eq 0 ]; then
if ((${#WEB_APPS[@]})); then
IFS=$'\n' SORTED_WEB_APPS=($(sort <<<"${WEB_APPS[*]}"))
unset IFS
APP_NAMES=$(gum choose --no-limit --header "Select web app to remove..." --selected-prefix="✗ " --cursor-prefix=" " "${SORTED_WEB_APPS[@]}")
APP_NAMES=$(gum choose --no-limit --header "Select web app to remove..." --selected-prefix="✗ " "${SORTED_WEB_APPS[@]}")
else
echo "No web apps to remove."
exit 1