Commit 522169051e

522169051e5b9a5c47f18affa603f349eda66771

parent: ed403b692d

Verified · cmc

cmc <hello@cleberg.net> · 2026-09-24 02:09 UTC

control: runner fingerprints shrink; the one-revision note goes to stderr

Ref #254
internal/control/admin.go +1 −1
@@ -541,7 +541,7 @@ func runAdminRunners(c *Ctx, args []string) int {
541541 if r.BuildNumber != 0 {
542542 held = fmt.Sprintf("%s #%d %s since %s", r.BuildRepo, r.BuildNumber, r.BuildJob, r.StartedAt)
543543 }
544 tb.row(cText(r.Username), cRef(r.Fingerprint), cAge(r.LastSeen), cText(scope), cText(held))
544 tb.row(cText(r.Username), cFlex(r.Fingerprint), cAge(r.LastSeen), cText(scope), cText(held))
545545 }
546546 tb.flush()
547547 })
internal/control/mr.go +1 −1
@@ -1715,7 +1715,7 @@ func runMRRevisions(c *Ctx, args []string) int {
17151715 }
17161716 tb.flush()
17171717 if len(revs) < 2 {
1718 fmt.Fprintf(w, "\nonly one revision; %s!%d has not been pushed to since it was opened\n",
1718 fmt.Fprintf(c.Stderr, "only one revision; %s!%d has not been pushed to since it was opened\n",
17191719 repo.Path(), mr.Number)
17201720 }
17211721 })