From 217a14e2186d9cb15a603968822b06a436289c5e Mon Sep 17 00:00:00 2001 From: Dead-Bytes <143434285+Dead-Bytes@users.noreply.github.com> Date: Tue, 9 Jun 2026 10:33:54 +0530 Subject: [PATCH] feat: main selection on the install script --- install.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/install.sh b/install.sh index f859e97..5b3b6d6 100644 --- a/install.sh +++ b/install.sh @@ -11,9 +11,6 @@ export PATH="$HOME/.bun/bin:$PATH" # ───────────────────────────────────────────── REPO_URL="https://github.com/ByteBell/open-ir" -# Clone the same branch this installer was published from, so the installed code -# matches the config schema it writes. Override with BYTEBELL_BRANCH=... if needed. -REPO_BRANCH="${BYTEBELL_BRANCH:-merge/embedded_prerelease}" # ── helpers ────────────────────────────────── @@ -81,7 +78,7 @@ print_step "Cloning Bytebell" if [ -d "open-ir/.git" ]; then print_info "existing install detected at open-ir/ — leaving it untouched (no git pull)" else - git clone --branch "$REPO_BRANCH" "$REPO_URL" open-ir + git clone "$REPO_URL" fi cd open-ir REPO_DIR="$(pwd)"