diff options
| author | Jeff Carr <[email protected]> | 2025-01-20 08:14:18 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-20 08:14:18 -0600 |
| commit | 0ec680f2c3264d7121bb60a298e2c495a9709d4f (patch) | |
| tree | 1198460312bc3b0a9d5b8f50f8106837211ab2b8 /findNext.go | |
| parent | fbc3dae556b67cd93d6f8abbdee1f0c7293318ad (diff) | |
maybe actually worksv0.23.32
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 |
