From 44f6245f35f0ee8994d946b033ecbce151efc7a9 Mon Sep 17 00:00:00 2001 From: fullstackjam Date: Wed, 9 Sep 2026 19:31:45 +0800 Subject: [PATCH] chore(install): remove dead OPENBOOT_VERSION pin from install.sh VERSION and REPO were assigned at the top of scripts/install.sh and never read again: the script installs whatever the tap currently publishes via 'brew install openbootdotdev/tap/openboot', so OPENBOOT_VERSION had no effect. Drop both assignments and the AGENTS.md row that documented the variable as a working pin, so the env-var table matches what the script actually reads (OPENBOOT_DRY_RUN only). --- AGENTS.md | 1 - scripts/install.sh | 2 -- 2 files changed, 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index fe64898..caf8346 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -193,4 +193,3 @@ extra confirmation. | `OPENBOOT_API_URL` | Override API base URL (testing; https or http://localhost only) | | `OPENBOOT_DOTFILES` | Override dotfiles repo URL | | `OPENBOOT_DRY_RUN` | Dry-run mode for `scripts/install.sh` (not the CLI) | -| `OPENBOOT_VERSION` | Pin version in `scripts/install.sh` | diff --git a/scripts/install.sh b/scripts/install.sh index 30b4b5b..dad7db1 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -1,8 +1,6 @@ #!/bin/bash set -euo pipefail -VERSION="${OPENBOOT_VERSION:-latest}" -REPO="openbootdotdev/openboot" BINARY_NAME="openboot" TAP_NAME="openbootdotdev/tap" DRY_RUN="${OPENBOOT_DRY_RUN:-false}"