summaryrefslogtreecommitdiff
path: root/cleanGoSum.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-05-29 19:17:50 -0500
committerJeff Carr <[email protected]>2025-05-29 19:17:50 -0500
commita29e10e9116f4d5ab80210b3eb8e25b674d3338f (patch)
treeb6182f8668da2dd246092f6fe6c7dad0093d3121 /cleanGoSum.go
parent2b85f5e17dda4bea2b9403668c66e291dfa67591 (diff)
Diffstat (limited to 'cleanGoSum.go')
-rw-r--r--cleanGoSum.go6
1 files changed, 4 insertions, 2 deletions
diff --git a/cleanGoSum.go b/cleanGoSum.go
index 8d416e2..00e8046 100644
--- a/cleanGoSum.go
+++ b/cleanGoSum.go
@@ -15,13 +15,15 @@ import (
)
// This will recreate your go.sum and go.mod files
-
// checks to see if every 'master' git branch version
// matches the go.sum file
+
+// THIS IS IN lib/forgepb AND THIS SHOULD BE SWITCHED TO THERE
+// but I can't do it because forge as an app and forge packages aren't yet strong enough to use here (2025 may)
func cleanGoDepsCheckOk(check *gitpb.Repo) error {
// var err error = nil
// var fixes [][]string
- log.Printf("current repo %s go dependancy count: %d", check.GetGoPath(), check.GoDepsLen())
+ log.Printf("%s repo go dependancy count: %d\n", check.GetGoPath(), check.GoDepsLen())
if check.GoDeps == nil {
return errors.New("check.GoDeps == nil")
}