diff options
| author | Jeff Carr <[email protected]> | 2025-10-30 00:12:28 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-30 00:12:28 -0500 |
| commit | c3a4bbc7f34d55fcdefcf44dce7a93343dc2af81 (patch) | |
| tree | cccd04c72b370405e4ab892d8648fef4265c866a /finalGoSumCheck.go | |
| parent | e86dac455dc985cc8bbbbf725a1bd3c6652ce2aa (diff) | |
new smarter rill funcs()
Diffstat (limited to 'finalGoSumCheck.go')
| -rw-r--r-- | finalGoSumCheck.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/finalGoSumCheck.go b/finalGoSumCheck.go index e789c89..42be348 100644 --- a/finalGoSumCheck.go +++ b/finalGoSumCheck.go @@ -76,42 +76,42 @@ func (f *Forge) FinalGoDepsCheckOk(check *gitpb.Repo) error { // TODO: this is a dumb hack & needs to be updated to talk to forged func (f *Forge) CheckOverride(gopath string) bool { if gopath == "bou.ke/monkey" { - log.Info("CheckOverride() is bypassing", gopath) + // log.Info("CheckOverride() is bypassing", gopath) return true } if gopath == "github.com/posener/complete/v2" { - log.Info("CheckOverride() is bypassing", gopath) + // log.Info("CheckOverride() is bypassing", gopath) return true } if strings.HasPrefix(gopath, "github.com/go-gl") { - log.Info("CheckOverride() is bypassing", gopath) + // log.Info("CheckOverride() is bypassing", gopath) return true } if strings.HasPrefix(gopath, "google.golang.org") { - log.Info("CheckOverride() is bypassing", gopath) + // log.Info("CheckOverride() is bypassing", gopath) return true } if strings.HasPrefix(gopath, "cloud.google.com/go") { - log.Info("CheckOverride() is bypassing", gopath) + // log.Info("CheckOverride() is bypassing", gopath) return true } if strings.HasPrefix(gopath, "go.opencensus.io") { - log.Info("CheckOverride() is bypassing", gopath) + // log.Info("CheckOverride() is bypassing", gopath) return true } if strings.HasPrefix(gopath, "github.com/nicksnyder/go-i18n") { - log.Info("CheckOverride() is bypassing", gopath) + // log.Info("CheckOverride() is bypassing", gopath) return true } // fuckit for now. just blacklist github.com if strings.HasPrefix(gopath, "github.com/") { if env.Verbose() { - log.Info("CheckOverride() is ignoring everything at github.com", gopath) + // 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) + // log.Info("CheckOverride() is ignoring else not at go.wit.com", gopath) return true } return false |
