fix: use git add -f to bypass spurious ignore on cmd/server

This commit is contained in:
2026-07-09 18:40:15 -04:00
parent 83cc48e70f
commit afe399d3a9
+1 -1
View File
@@ -111,7 +111,7 @@ else
NEW_VERSION=$(grep -oE 'var version = "[0-9]+\.[0-9]+\.[0-9]+"' cmd/server/main.go | grep -oE '[0-9]+\.[0-9]+\.[0-9]+')
[ "$NEW_VERSION" != "$CURRENT_VERSION" ] || die "Version bump failed"
git add cmd/server/main.go Makefile
git add -f cmd/server/main.go Makefile
git commit -m "Bump version to $NEW_VERSION" >/dev/null
git push || die "git push failed"
success "Bumped to $NEW_VERSION and pushed"