diff options
| author | Jeff Carr <[email protected]> | 2025-01-17 05:30:24 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-17 05:30:24 -0600 |
| commit | 9431656ae80de57233cd5e721132c93699b22615 (patch) | |
| tree | 8d077c13945259976962a75a0f8f49caf4aa71d2 /doRelease.go | |
| parent | 5a745337fb5085fb4ee08af3d9a9fbc2d0c6d498 (diff) | |
quiet outputv0.23.22
Diffstat (limited to 'doRelease.go')
| -rw-r--r-- | doRelease.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doRelease.go b/doRelease.go index 0b3c34d..f46fb3f 100644 --- a/doRelease.go +++ b/doRelease.go @@ -50,7 +50,7 @@ func doRelease() bool { log.Info("boo, you didn't git clone", me.current.GetGoPath()) return false } - if !me.forge.FinalGoDepsCheckOk(check) { + if !me.forge.FinalGoDepsCheckOk(check, true) { msg := fmt.Sprint("the go.mod file is wrong. fix it here?", check.GetGoPath()) badExit(errors.New(msg)) return false @@ -219,7 +219,7 @@ func doReleaseFindNext() bool { if findFix { fixGodeps(check) } - if me.forge.FinalGoDepsCheckOk(check) { + if me.forge.FinalGoDepsCheckOk(check, false) { // the go.sum file is ok to release return true } |
