remove old 'go get' line

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-11-07 00:46:22 -06:00
parent 992d3606e5
commit bc9c98236e
1 changed files with 0 additions and 1 deletions

View File

@ -31,7 +31,6 @@ func (rl *RepoList) CheckValidGoSum(r *RepoRow) (bool, error) {
// for now, if it's not one of the GUI repos, assume it's readonly and ignore it
if strings.HasPrefix(depPath, "go.wit.com") {
log.Log(REPOWARN, "Run: go get -v", depPath)
// rs.RunCmd([]string{"go", "get", "-v", depname}) // download this here?
return false, errors.New("CheckValidGoSum() download repo: " + depPath)
}
// it's probably okay. running a compile check before this would be a good test