summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
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))
}