From e1f65c4ecc4b3f03d5da7ba37556ccaca9cb169a Mon Sep 17 00:00:00 2001 From: Vinod Muthusamy Date: Wed, 8 Apr 2026 15:27:00 -0500 Subject: [PATCH] fix(installer): default SCRIPT_VERSION to main instead of pinned tag The bob platform skills (evolve-lite:learn, evolve-lite:recall) were added after v1.0.6, so the pinned tag causes bob lite installs to fail with FileNotFoundError. Default to main so the installer always pulls the latest source tree. Fixes #171 --- platform-integrations/install.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/platform-integrations/install.sh b/platform-integrations/install.sh index d8b770d8..a9769cfb 100755 --- a/platform-integrations/install.sh +++ b/platform-integrations/install.sh @@ -21,10 +21,9 @@ set -euo pipefail EVOLVE_REPO="${EVOLVE_REPO:-AgentToolkit/altk-evolve}" EVOLVE_DEBUG="${EVOLVE_DEBUG:-0}" -# SCRIPT_VERSION is substituted by the release process (e.g. sed to "v1.2.0"). -# This means a script fetched from a tag URL already knows its own version, -# so callers never need to set EVOLVE_VERSION manually. -SCRIPT_VERSION="v1.0.6" +# Default to "main" so the installer always pulls the latest source. +# Callers can still pin a specific tag: EVOLVE_VERSION=v1.0.6 bash install.sh ... +SCRIPT_VERSION="main" EVOLVE_VERSION="${EVOLVE_VERSION:-${SCRIPT_VERSION}}" # ─── Colours ──────────────────────────────────────────────────────────────────