diff options
Diffstat (limited to 'prepareRelease.go')
| -rw-r--r-- | prepareRelease.go | 6 |
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) } } |
