summaryrefslogtreecommitdiff
path: root/goDebCheck.go
diff options
context:
space:
mode:
Diffstat (limited to 'goDebCheck.go')
-rw-r--r--goDebCheck.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/goDebCheck.go b/goDebCheck.go
index 7e23e67..ce0f566 100644
--- a/goDebCheck.go
+++ b/goDebCheck.go
@@ -12,7 +12,7 @@ import (
// it re-scans the go.sum file. DOES NOT MODIFY ANYTHING
// this is the last thing to run to double check everything
// before 'git tag' or git push --tags
-func (f *Forge) FinalGoDepsCheck(check *gitpb.Repo) bool {
+func (f *Forge) FinalGoDepsCheckOk(check *gitpb.Repo) bool {
var good bool = true
if check == nil {
log.Info("boo, check == nil")
@@ -42,7 +42,7 @@ func (f *Forge) FinalGoDepsCheck(check *gitpb.Repo) bool {
if f.IsReadOnly(depRepo.GetGoPath()) {
log.Printf("%-48s ok error %10s vs %10s (ignoring read-only repo)", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
} else {
- log.Printf("%-48s error %10s vs %10s", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
+ log.Printf("%-48s error %10s vs %10s", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
good = false
}
}