From bc9c98236ebc245328edf3748956da8990855295 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Thu, 7 Nov 2024 00:46:22 -0600 Subject: [PATCH] remove old 'go get' line Signed-off-by: Jeff Carr --- goConfig.go | 1 - 1 file changed, 1 deletion(-) diff --git a/goConfig.go b/goConfig.go index 20b1a30..4d3a5dc 100644 --- a/goConfig.go +++ b/goConfig.go @@ -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