.proto changes

This commit is contained in:
Jeff Carr 2025-01-13 08:11:43 -06:00
parent f5b53b403e
commit db659057c1
1 changed files with 3 additions and 3 deletions

View File

@ -104,14 +104,14 @@ func rePrepareRelease() {
lastTag := check.GetLastTag()
if master != lastTag {
forceReleaseVersion(check)
me.found.AppendUniqueGoPath(check)
me.found.AppendByGoPath(check)
continue
}
if argv.Protobuf && check.GetRepoType() == "protobuf" {
// if --protobuf, this will force upgrade each one
forceReleaseVersion(check)
me.found.AppendUniqueGoPath(check)
me.found.AppendByGoPath(check)
continue
}
@ -125,7 +125,7 @@ func rePrepareRelease() {
}
log.Printf("dependancy checks indicate a new release is needed for %s\n", check.GetGoPath())
forceReleaseVersion(check)
me.found.AppendUniqueGoPath(check)
me.found.AppendByGoPath(check)
}
}