protobuf changes
This commit is contained in:
parent
d6ecd246e0
commit
c275e762c6
|
@ -31,7 +31,7 @@ func findNext() bool {
|
||||||
} else {
|
} else {
|
||||||
log.Info("findNext() update needed", check.GoPath, check.GetTargetVersion(), "vs", check.GetCurrentBranchVersion())
|
log.Info("findNext() update needed", check.GoPath, check.GetTargetVersion(), "vs", check.GetCurrentBranchVersion())
|
||||||
}
|
}
|
||||||
if me.forge.IsReadOnly(check) {
|
if me.forge.Config.IsReadOnly(check.GoPath) {
|
||||||
log.Info("findNext() skipping readonly")
|
log.Info("findNext() skipping readonly")
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
2
http.go
2
http.go
|
@ -280,7 +280,7 @@ func showNext() {
|
||||||
} else {
|
} else {
|
||||||
log.Info("IsPrimitive() == false")
|
log.Info("IsPrimitive() == false")
|
||||||
}
|
}
|
||||||
if me.forge.IsPrivate(check.GoPath) {
|
if me.forge.Config.IsPrivate(check.GoPath) {
|
||||||
log.Info("IsPrivate() == true")
|
log.Info("IsPrivate() == true")
|
||||||
} else {
|
} else {
|
||||||
log.Info("IsPrivate() == false")
|
log.Info("IsPrivate() == false")
|
||||||
|
|
2
human.go
2
human.go
|
@ -63,7 +63,7 @@ func PrintReleaseReport(readonly string, perfect string) {
|
||||||
loop := me.forge.Repos.SortByGoPath()
|
loop := me.forge.Repos.SortByGoPath()
|
||||||
for loop.Scan() {
|
for loop.Scan() {
|
||||||
check := loop.Next()
|
check := loop.Next()
|
||||||
if me.forge.IsReadOnly(check) {
|
if me.forge.Config.IsReadOnly(check.GoPath) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if check.GetCurrentBranchVersion() == check.GetTargetVersion() {
|
if check.GetCurrentBranchVersion() == check.GetTargetVersion() {
|
||||||
|
|
2
main.go
2
main.go
|
@ -115,7 +115,7 @@ func main() {
|
||||||
} else {
|
} else {
|
||||||
repo.Status.SetReadOnly(false)
|
repo.Status.SetReadOnly(false)
|
||||||
}
|
}
|
||||||
if me.forge.IsPrivate(repo.GoPath()) {
|
if me.forge.Config.IsPrivate(repo.GoPath()) {
|
||||||
repo.Status.SetPrivate(true)
|
repo.Status.SetPrivate(true)
|
||||||
} else {
|
} else {
|
||||||
repo.Status.SetPrivate(false)
|
repo.Status.SetPrivate(false)
|
||||||
|
|
Loading…
Reference in New Issue