Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace
replace
directive with direct version pinning (StyraInc#491)
As noted in StyraInc#490, by using a `replace` directive, we're unable to then `go install` this project: ``` % go install github.com/StyraInc/regal@latest go: downloading github.com/StyraInc/regal v0.13.0 go: github.com/StyraInc/regal@latest (in github.com/StyraInc/regal@v0.13.0): The go.mod file for the module providing named packages contains one or more replace directives. It must not contain directives that would cause it to be interpreted differently than if it were the main module. ``` Instead, we can replace this with a direct pinning to the commit we want to pull. Closes StyraInc#490.
- Loading branch information