debugging releaser
This commit is contained in:
parent
3e4b1ddc83
commit
66738e4300
|
@ -47,7 +47,7 @@ func (f *Forge) FinalGoDepsCheckOk(check *gitpb.Repo, verbose bool) bool {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if depRepo.GetVersion() == found.GetMasterVersion() {
|
if depRepo.GetVersion() == found.GetMasterVersion() {
|
||||||
log.Printf("%-48s error ?? %10s vs %10s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetTargetVersion())
|
log.Printf("%-48s error ?? %-10s vs %-10s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
// log.Info("found dep", depRepo.GetGoPath())
|
// log.Info("found dep", depRepo.GetGoPath())
|
||||||
|
@ -65,6 +65,7 @@ func (f *Forge) FinalGoDepsCheckOk(check *gitpb.Repo, verbose bool) bool {
|
||||||
// skip this gopath because it's probably broken forever
|
// skip this gopath because it's probably broken forever
|
||||||
continue
|
continue
|
||||||
} else {
|
} else {
|
||||||
|
log.Printf("%-48s error ?? %-10s vs %-10s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetMasterVersion())
|
||||||
log.Printf("%-48s error %10s vs %10s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetTargetVersion())
|
log.Printf("%-48s error %10s vs %10s\n", depRepo.GetGoPath(), depRepo.GetVersion(), found.GetTargetVersion())
|
||||||
good = false
|
good = false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue