Skip to content

Commit 1f797c3

Browse files
authored
fix(installer): default SCRIPT_VERSION to main instead of pinned tag (#173)
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
1 parent 77273dd commit 1f797c3

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

platform-integrations/install.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,9 @@ set -euo pipefail
2121
EVOLVE_REPO="${EVOLVE_REPO:-AgentToolkit/altk-evolve}"
2222
EVOLVE_DEBUG="${EVOLVE_DEBUG:-0}"
2323

24-
# SCRIPT_VERSION is substituted by the release process (e.g. sed to "v1.2.0").
25-
# This means a script fetched from a tag URL already knows its own version,
26-
# so callers never need to set EVOLVE_VERSION manually.
27-
SCRIPT_VERSION="v1.0.6"
24+
# Default to "main" so the installer always pulls the latest source.
25+
# Callers can still pin a specific tag: EVOLVE_VERSION=v1.0.6 bash install.sh ...
26+
SCRIPT_VERSION="main"
2827
EVOLVE_VERSION="${EVOLVE_VERSION:-${SCRIPT_VERSION}}"
2928

3029
# ─── Colours ──────────────────────────────────────────────────────────────────

0 commit comments

Comments
 (0)