diff options
| author | Jeff Carr <[email protected]> | 2025-10-22 16:21:53 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-22 16:21:53 -0500 |
| commit | 8535f407ac1e317df9d9bb34dbef7194b23eea1e (patch) | |
| tree | 31b043ce0b2036b2477000215e1985b21ef1f86e /finalGoSumCheck.go | |
| parent | 2f96ea77ca597e50d2236d4fe49cf4352f146507 (diff) | |
okay. this needs to be fixed
Diffstat (limited to 'finalGoSumCheck.go')
| -rw-r--r-- | finalGoSumCheck.go | 8 |
1 files changed, 7 insertions, 1 deletions
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 |
