diff options
Diffstat (limited to 'human.go')
| -rw-r--r-- | human.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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)) } |
