From 21dd7145146498182eaf977e00219ea3261bcaac Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 4 Jun 2025 07:41:47 -0500 Subject: [PATCH] go-mod-clean syntax change --- clone.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clone.go b/clone.go index 58c0b90..5d80002 100644 --- a/clone.go +++ b/clone.go @@ -149,7 +149,7 @@ func makeValidGoSum(check *gitpb.Repo) error { log.Info("try running go-mod-clean") // update go.sum and go.mod - if err := check.RunVerbose([]string{"go-mod-clean", "--smart"}); err != nil { + if err := check.RunVerbose([]string{"go-mod-clean", "lax"}); err != nil { log.Info("") log.Info("Do you have go-mod-clean? Otherwise:") log.Info(" go install go.wit.com/apps/go-mod-clean@latest")