diff options
| author | Jeff Carr <[email protected]> | 2025-05-23 17:40:23 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-05-23 17:40:23 -0500 |
| commit | 2b85f5e17dda4bea2b9403668c66e291dfa67591 (patch) | |
| tree | d69031d70664e52326a0a1cbf0ce5eaefad9e952 /doStrict.go | |
| parent | 4bbf8c76bc83cc6ed942be1f13a944e40a4924df (diff) | |
remove attempts to set go version
Diffstat (limited to 'doStrict.go')
| -rw-r--r-- | doStrict.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doStrict.go b/doStrict.go index 34cffb5..a1d1f28 100644 --- a/doStrict.go +++ b/doStrict.go @@ -78,7 +78,7 @@ func doStrict(repo *gitpb.Repo) error { } os.Unsetenv("GO111MODULE") - if result, err := repo.RunQuiet([]string{"go", "mod", "tidy", "-go=" + golangVersion}); err != nil { + if result, err := repo.RunQuiet([]string{"go", "mod", "tidy"}); err != nil { // I guess the thing to do, if go mod tidy fails, is to just leave the repo alone // it's either primitive or could be a go support project but not in go for _, line := range result.Stdout { |
