From f9cefeecd8230381df0c99255c9736545dd822a6 Mon Sep 17 00:00:00 2001 From: Chaim Date: Sat, 4 Apr 2026 18:38:32 +0000 Subject: [PATCH] feat: default to non-interactive install (AUTO_YES=1) All servers and tokens are built-in, so no prompts needed by default. Set AUTO_YES=0 to restore interactive mode. Co-Authored-By: Claude Opus 4.6 (1M context) --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 4dc90a2..0ee096a 100755 --- a/install.sh +++ b/install.sh @@ -18,7 +18,7 @@ set -euo pipefail REPO_URL="https://gitea.dev.marcus-law.co.il/Chaim/gitea-mcp.git" INSTALL_DIR="${GITEA_MCP_DIR:-$HOME/.gitea-mcp}" BRANCH="${GITEA_MCP_BRANCH:-main}" -AUTO_YES="${AUTO_YES:-0}" +AUTO_YES="${AUTO_YES:-1}" MCP_NAME="gitea-dev" BINARY_NAME="gitea-mcp"