Allow installer script to specify target branch via env var

This commit is contained in:
mARTin-B78 2026-06-05 17:21:09 +02:00
parent 5484bc6a1b
commit fb05b6f19d

View File

@ -22,7 +22,7 @@
set -euo pipefail
REPO="https://github.com/mARTin-B78/blitztext-app-linux.git"
BRANCH="main"
BRANCH="${BRANCH:-main}"
# --- helpers ----------------------------------------------------------------
info() { echo -e "\033[1;34m==>\033[0m \033[1m$*\033[0m"; }