Skip to content

Commit bf6bbb8

Browse files
baocinclaude
andcommitted
Add Buy Me a Coffee link to terminal scan output
Added buymeacoffee.com/gitvet next to contact email in: - Success scan output (after findings report) - Error output (when scan fails) Now shows: "Questions? gitvet@steele.red • buymeacoffee.com/gitvet" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent a155538 commit bf6bbb8

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

internal/githttp/handler.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,7 +671,9 @@ func (h *Handler) writeScanReport(sb *SidebandWriter, report *ReportWriter, pars
671671

672672
// Contact
673673
report.WriteBoxMiddle(width)
674-
report.WriteBoxLine(fmt.Sprintf("Questions? %s", sb.Color(Cyan, "gitvet@steele.red")), width)
674+
report.WriteBoxLine(fmt.Sprintf("Questions? %s • %s",
675+
sb.Color(Cyan, "gitvet@steele.red"),
676+
sb.Color(Cyan, "buymeacoffee.com/gitvet")), width)
675677
report.WriteBoxBottom(width)
676678

677679
sb.WriteEmptyLine()
@@ -959,7 +961,9 @@ func (h *Handler) writeFetchError(sb *SidebandWriter, report *ReportWriter, pars
959961
}
960962

961963
report.WriteBoxMiddle(boxWidth)
962-
report.WriteBoxLine(sb.Color(Cyan, "Questions? gitvet@steele.red"), boxWidth)
964+
report.WriteBoxLine(fmt.Sprintf("Questions? %s • %s",
965+
sb.Color(Cyan, "gitvet@steele.red"),
966+
sb.Color(Cyan, "buymeacoffee.com/gitvet")), boxWidth)
963967
report.WriteBoxBottom(boxWidth)
964968
sb.WriteEmptyLine()
965969
}

0 commit comments

Comments
 (0)