From 5da10be63e91f2a36c8826cc224d1c5865b4e3dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Wn=C4=99trzak?= Date: Sun, 5 Oct 2025 22:02:22 +0200 Subject: [PATCH] Adjust database installation message to only one (#2192) * Fix comment * Adjust database installation message to only one Follow up to https://github.com/basecamp/omarchy/commit/e260d28f43d40de5f816a556b71ba479de74b728 --------- Co-authored-by: David Heinemeier Hansson --- bin/omarchy-install-docker-dbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/omarchy-install-docker-dbs b/bin/omarchy-install-docker-dbs index f7b624ad..112af1e2 100755 --- a/bin/omarchy-install-docker-dbs +++ b/bin/omarchy-install-docker-dbs @@ -3,7 +3,7 @@ options=("MySQL" "PostgreSQL" "Redis" "MongoDB" "MariaDB") if [[ "$#" -eq 0 ]]; then - choices=$(printf "%s\n" "${options[@]}" | gum choose --header "Select databases (space to select, return to install, esc to cancel)") || main_menu + choices=$(printf "%s\n" "${options[@]}" | gum choose --header "Select database (return to install, esc to cancel)") || main_menu else choices="$@" fi