diff --git a/prepareRelease.go b/prepareRelease.go index aecac0e..602317f 100644 --- a/prepareRelease.go +++ b/prepareRelease.go @@ -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" }