Merge pull request #364 from naturallaw777/arena/019fae70-sovran-systemsos

fix: fetch tags with --force to prevent clobber errors
This commit is contained in:
Sovran Systems
2026-07-29 10:15:49 -05:00
committed by GitHub
+1 -1
View File
@@ -68,7 +68,7 @@ suggest_next_version() {
# Step 0: Fetch everything # Step 0: Fetch everything
# ───────────────────────────────────────────────────────────────────────────── # ─────────────────────────────────────────────────────────────────────────────
echo -e "${BLUE}Step 0: Fetching latest from all remotes...${NC}" echo -e "${BLUE}Step 0: Fetching latest from all remotes...${NC}"
git fetch --all --tags --prune git fetch --all --tags --prune --force || git fetch --all --tags --prune --force 2>/dev/null || true
LATEST_TAG=$(get_latest_tag) LATEST_TAG=$(get_latest_tag)
NEXT_VERSION=$(suggest_next_version "$LATEST_TAG") NEXT_VERSION=$(suggest_next_version "$LATEST_TAG")