summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-13 08:11:43 -0600
committerJeff Carr <[email protected]>2025-01-13 08:11:43 -0600
commitdb659057c1cd0b3e00b8905589af16559b3095db (patch)
tree51ab05ec73fe7f723c1c2e1c5bfd2af831c8c648
parentf5b53b403e24f3c1b90f986c7eea255b9e7fb366 (diff)
.proto changesv0.23.21v0.23.20
-rw-r--r--prepareRelease.go6
1 files 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)
}
}