diff options
| author | Jeff Carr <[email protected]> | 2024-12-02 08:45:27 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-02 08:45:27 -0600 |
| commit | 189d305feeab86df88f2749afb959aa382154716 (patch) | |
| tree | d4494a9e3f77f04519ffef431d7da1c686721719 /goDebCheck.go | |
| parent | 86e0a1f9885b839c83e0cac3685cac0af0b54a62 (diff) | |
Diffstat (limited to 'goDebCheck.go')
| -rw-r--r-- | goDebCheck.go | 4 |
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 } } |
