summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--goConfig.go1
1 files changed, 0 insertions, 1 deletions
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