summaryrefslogtreecommitdiff
path: root/findNext.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-14 17:58:20 -0600
committerJeff Carr <[email protected]>2025-02-14 17:58:20 -0600
commit2f1d7ac1f2bdcbe3dca45deec7e6827362b9cd5b (patch)
tree96ab1fa56ae83c9119ce0633aede7ebc0fa73718 /findNext.go
parentffecf5ea0aca03385bc024db194079df4a4599df (diff)
minor
Diffstat (limited to 'findNext.go')
-rw-r--r--findNext.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/findNext.go b/findNext.go
index 2990072..304291d 100644
--- a/findNext.go
+++ b/findNext.go
@@ -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)