From c6ee1480cec15d27e491ceca0c47d64347f01d83 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Thu, 1 Jan 2026 08:32:21 +0100 Subject: [PATCH] fix: set COMPOSE_CMD default in config section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes "COMPOSE_CMD: unbound variable" error when running --uninstall or --update flags. Previously the variable was only set during check_prerequisites(), which runs after flag handling. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 7bb2b2e..54595fc 100755 --- a/install.sh +++ b/install.sh @@ -23,6 +23,7 @@ DEFAULT_MODEL="llama3.2" FRONTEND_PORT=7842 BACKEND_PORT=9090 OLLAMA_PORT=11434 +COMPOSE_CMD="docker compose" # Colors (disabled if not a terminal) if [[ -t 1 ]]; then