Commit641483cunknown_key
fix(deploy): point deploy.sh at main, allow BRANCH/REPO_URL env override
1 file changed+2−2641483c89b73a8d125dc84c92b100f363a80b7e6
1 changed file+2−2
Modifiedscripts/deploy.sh+2−2View fileUnifiedSplit
@@ -8,8 +8,8 @@ set -euo pipefail
88
99APP_NAME="gluecron"
1010APP_DIR="/opt/gluecron"
11REPO_URL="https://github.com/ccantynz-alt/Gluecron.com.git"
12BRANCH="claude/ship-fixes-and-tests-Jvz1c"
11REPO_URL="${REPO_URL:-https://github.com/ccantynz-alt/Gluecron.com.git}"
12BRANCH="${BRANCH:-main}"
1313
1414echo "=========================================="
1515echo " Deploying $APP_NAME"
1616