summaryrefslogtreecommitdiff
path: root/human.go
diff options
context:
space:
mode:
Diffstat (limited to 'human.go')
-rw-r--r--human.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/human.go b/human.go
index 5b2aaf9..942c578 100644
--- a/human.go
+++ b/human.go
@@ -55,7 +55,7 @@ func PrintReport(readonly string, onlydirty string, perfect string) {
log.Info(fmt.Sprintf("EVERYTHING WORKED repo count = %d", count))
}
-func PrintReleaseReport(readonly string, perfect string) {
+func PrintReleaseReport(readonly string, perfect string) int {
var count int
log.Info(repolist.ReleaseReportHeader())
@@ -81,4 +81,5 @@ func PrintReleaseReport(readonly string, perfect string) {
log.Info(me.forge.StandardReleaseHeader(check, state))
}
log.Info(fmt.Sprintf("total repo count = %d", count))
+ return count
}