This commit is contained in:
Jeff Carr 2025-08-31 16:30:12 -05:00
parent d8706ed738
commit d5626a5e23
1 changed files with 4 additions and 4 deletions

View File

@ -139,7 +139,7 @@ func rePrepareRelease() {
if err := checkPublishedGodeps(check); err != nil {
// this means the published godeps are no longer up to date
forceReleaseVersion(check)
me.found.AppendByGoPath(check)
me.found.AppendByFullPath(check)
log.Info("checkPublishedGodeps failed with err", check.GetGoPath(), err)
continue
} else {
@ -176,7 +176,7 @@ func rePrepareRelease() {
}
log.Printf("NEED RELEASE FOR %-50s tag %s != %s\n", check.GetGoPath(), master, lastTag)
forceReleaseVersion(check)
me.found.AppendByGoPath(check)
me.found.AppendByFullPath(check)
me.reason[check] = "master != lastTag"
continue
}
@ -198,7 +198,7 @@ func rePrepareRelease() {
log.Printf("NEED RELEASE FOR %s err: %v\n", check.GetGoPath(), "because --protobuf")
// if --protobuf, this will force upgrade each one
forceReleaseVersion(check)
me.found.AppendByGoPath(check)
me.found.AppendByFullPath(check)
me.reason[check] = "protobuf repo deps changed"
continue
}
@ -213,7 +213,7 @@ func rePrepareRelease() {
} else {
log.Printf("NEED RELEASE FOR %-50s err: %v\n", check.GetGoPath(), err)
forceReleaseVersion(check)
me.found.AppendByGoPath(check)
me.found.AppendByFullPath(check)
me.reason[check] = "FinalGoDepsCheckOk() failed even though master tag == last tag"
}