From 8535f407ac1e317df9d9bb34dbef7194b23eea1e Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 22 Oct 2025 16:21:53 -0500 Subject: okay. this needs to be fixed --- finalGoSumCheck.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/finalGoSumCheck.go b/finalGoSumCheck.go index 6fba0a3..1935028 100644 --- a/finalGoSumCheck.go +++ b/finalGoSumCheck.go @@ -105,7 +105,13 @@ func (f *Forge) CheckOverride(gopath string) bool { } // fuckit for now. just blacklist github.com if strings.HasPrefix(gopath, "github.com/") { - log.Info("CheckOverride() is ignoring everything at github.com", gopath) + if ENV.Verbose() { + log.Info("CheckOverride() is ignoring everything at github.com", gopath) + } + return true + } + if !strings.HasPrefix(gopath, "go.wit.com") { + log.Info("CheckOverride() is ignoring else not at go.wit.com", gopath) return true } return false -- cgit v1.2.3