This commit is contained in:
Jeff Carr 2025-02-14 17:58:20 -06:00
parent ffecf5ea0a
commit 2f1d7ac1f2
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ func findNext() bool {
// don't check godepsNew, but check to make sure go mod tidy actually ran without error
os.Unsetenv("GO111MODULE")
cmd := []string{"go", "mod", "tidy"}
_, err := check.RunVerbose(cmd)
err := check.RunVerbose(cmd)
if err != nil {
log.Info("go mod tidy failed. this go package needs to be examined by hand as it doesn't appear to be primitive")
os.Exit(-1)