fixes
This commit is contained in:
parent
d8706ed738
commit
d5626a5e23
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue