Skip to content

Commit 297c23c

Browse files
Fix IBEX_VERSION not passed to Node installer subprocess
The shell variable was not exported, so the Node installer always fell back to v0.9-beta instead of the user-specified branch/tag. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 18ee9ae commit 297c23c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

install-ibex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ echo ""
113113
# Download and run the Node installer
114114
# Pinned to stable tag — future development happens on dev branch
115115
# Use </dev/tty so interactive prompts read from the terminal, not the pipe
116-
IBEX_VERSION="${IBEX_VERSION:-v0.9.1-beta}"
116+
export IBEX_VERSION="${IBEX_VERSION:-v0.9.1-beta}"
117117
TMPFILE=$(mktemp /tmp/ibex-install.XXXXXX)
118118
trap 'rm -f "$TMPFILE"' EXIT INT TERM
119119
curl -fsSL "https://raw.githubusercontent.com/Percona-Lab/IBEX/${IBEX_VERSION}/install-node.cjs" > "$TMPFILE"

0 commit comments

Comments
 (0)