From db659057c1cd0b3e00b8905589af16559b3095db Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 13 Jan 2025 08:11:43 -0600 Subject: [PATCH] .proto changes --- prepareRelease.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prepareRelease.go b/prepareRelease.go index c113715..4250224 100644 --- a/prepareRelease.go +++ b/prepareRelease.go @@ -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) } }