Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix dependency on github.com/openshift/api #1241

Closed
wants to merge 1 commit into from

Commits on Feb 19, 2020

  1. Fix dependency on github.com/openshift/api

    It looks like the openshift/api project deleted all of their tags, so
    now the following error is thrown any time we run e.g. a `go mod tidy`
    in any project that depends on it:
    
    ```
    go: github.com/openshift/api@v3.9.1-0.20190924102528-32369d4db2ad+incompatible: invalid pseudo-version: preceding tag (v3.9.0) not found
    ```
    
    For this change, all I did was remove the entries in "require" and
    "replace" in the go.mod, manually added the new "replace" and ran `make vendor`.
    
    See openshift/api#456 for more info on the
    issue.
    grdryn committed Feb 19, 2020
    Configuration menu
    Copy the full SHA
    14919df View commit details
    Browse the repository at this point in the history