summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-03 18:00:42 -0600
committerJeff Carr <[email protected]>2024-12-03 18:00:42 -0600
commit9b9df05f33e20277ff0e5e811c55d95ab56f562c (patch)
treebf151e340c7b6408303a3012c9bb41573767cc30 /human.go
parent9b2e99ac6b4ce29f3a248f380f50123a406d1650 (diff)
more removal of old stuff
Diffstat (limited to 'human.go')
-rw-r--r--human.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/human.go b/human.go
index fab7e94..e771238 100644
--- a/human.go
+++ b/human.go
@@ -74,7 +74,11 @@ func PrintReleaseReport(readonly string, perfect string) {
log.Info("boo, you didn't git clone", check.GoPath)
continue
}
- log.Info(me.forge.StandardReleaseHeader(check, ""))
+ var state string
+ if check.CheckDirty() {
+ state = "(dirty)"
+ }
+ log.Info(me.forge.StandardReleaseHeader(check, state))
}
log.Info(fmt.Sprintf("total repo count = %d", count))
}