summaryrefslogtreecommitdiff
path: root/doRelease.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-17 05:30:24 -0600
committerJeff Carr <[email protected]>2025-01-17 05:30:24 -0600
commit9431656ae80de57233cd5e721132c93699b22615 (patch)
tree8d077c13945259976962a75a0f8f49caf4aa71d2 /doRelease.go
parent5a745337fb5085fb4ee08af3d9a9fbc2d0c6d498 (diff)
quiet outputv0.23.22
Diffstat (limited to 'doRelease.go')
-rw-r--r--doRelease.go4
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
}