diff options
Diffstat (limited to 'findNext.go')
| -rw-r--r-- | findNext.go | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/findNext.go b/findNext.go index b635175..17a7fa0 100644 --- a/findNext.go +++ b/findNext.go @@ -91,11 +91,15 @@ func checkDeps(repo *gitpb.Repo) error { return fmt.Errorf("%s is waiting on %s", repo.GetGoPath(), found.GetGoPath()) } } - // found package isn't being published. is the version correct? - if found.GetLastTag() == dep.Version { - return fmt.Errorf("%s version mismatch on %s (%s vs %s)", repo.GetGoPath(), found.GetGoPath(), found.GetLastTag(), dep.Version) - } + // never check this? we are done? + /* + if found.GetLastTag() == dep.Version { + // everything is normal + } else { + return fmt.Errorf("%s version mismatch on %s (%s vs %s)", repo.GetGoPath(), found.GetGoPath(), found.GetLastTag(), dep.Version) + } + */ } // everything might be cool? return nil |
