Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ──────────────────────────────────

Expand Down Expand Up @@ -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)"
Expand Down
Loading