diff options
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 { |
