diff options
| author | Jeff Carr <[email protected]> | 2025-11-02 08:57:42 -0600 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-11-02 08:57:42 -0600 | 
| commit | d96d590aaef96fba9582306eb691d8ac6de14a60 (patch) | |
| tree | 6175254726810b0f0de88c3cc1bc095299eea42f | |
| parent | a72d983788e44cccdaa0f7310f8350355e7c32b3 (diff) | |
protobuf changesdevel
| -rw-r--r-- | cleanGoSum.go | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/cleanGoSum.go b/cleanGoSum.go index 8b9488a..eb68dbb 100644 --- a/cleanGoSum.go +++ b/cleanGoSum.go @@ -24,10 +24,10 @@ func cleanGoDepsCheckOk(check *gitpb.Repo) error {  	// var err error = nil  	// var fixes [][]string  	log.Printf("%s repo go dependancy count: %d\n", check.GetGoPath(), check.GoDepsLen()) -	if check.GoDeps == nil { +	if (check.GoInfo == nil) || (check.GoInfo.GoDeps == nil) {  		return errors.New("check.GoDeps == nil")  	} -	for depRepo := range check.GoDeps.IterAll() { +	for depRepo := range check.GoInfo.GoDeps.IterAll() {  		found := me.forge.Repos.FindByNamespace(depRepo.GetGoPath())  		if found == nil {  			if me.forge.CheckOverride(depRepo.GetGoPath()) {  | 
