diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 16:30:12 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 16:30:12 -0500 |
| commit | d5626a5e23efd5556c5b529d0b5f42480f3cd1bd (patch) | |
| tree | fd026f41ba79f5a953e28cafeed97954a9c0c4f3 | |
| parent | d8706ed738628124e38babc415de224911a6c56c (diff) | |
| -rw-r--r-- | prepareRelease.go | 8 |
1 files changed, 4 insertions, 4 deletions
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" } |
