diff options
| author | Jeff Carr <[email protected]> | 2024-12-17 07:09:22 -0600 | 
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-17 07:09:22 -0600 | 
| commit | 7396af67a199f8f10d3523913bf9c6e1b5aee9e9 (patch) | |
| tree | 814ba89363bd368a4ffd2d47068ef4e9edd212b6 | |
| parent | edfa36b419e0be1a46ee8150e408b08ef381ed02 (diff) | |
fixes for new gitpbv0.22.41v0.22.40v0.22.39v0.22.38v0.22.37v0.22.36v0.22.35v0.22.34v0.22.33v0.22.32v0.22.31v0.22.30v0.22.29v0.22.28v0.22.27v0.22.26v0.22.25v0.22.24v0.22.23v0.22.22v0.22.21v0.22.20v0.22.19v0.22.18v0.22.17v0.22.16v0.22.15v0.22.14
| -rw-r--r-- | main.go | 10 | 
1 files changed, 5 insertions, 5 deletions
@@ -8,23 +8,23 @@ import (  // go will sit here until the window exits  func main() {  	forge := forgepb.Init() -	all := forge.Repos.SortByGoPath() +	all := forge.Repos.SortByFullPath()  	for all.Scan() {  		check := all.Next() -		repotype := check.RepoType() +		repotype := check.GetRepoType()  		if repotype != "plugin" {  			continue  		} -		if forge.Config.IsReadOnly(check.GoPath) { +		if forge.Config.IsReadOnly(check.GetGoPath()) {  			// ignore read only stuff  			continue  		} -		log.Info("STARTING 'make install' in", check.GoPath) +		log.Info("STARTING 'make install' in", check.GetGoPath())  		if err := forge.Install(check, nil); err != nil { -			log.Warn("INSTALL FAILED", check.GoPath, err) +			log.Warn("INSTALL FAILED", check.GetGoPath(), err)  		}  	}  }  | 
