Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upThe tool is hard to install via Go modules #30
Closed
Comments
mvdan
added a commit
to mvdan/fuzzit
that referenced
this issue
Sep 10, 2019
Before this change, @latest and specific versions like @v2.4.29 would fail with module-aware go get, as the module was a v0/v1 instead of the expected v2. Amend the go.mod and all the imports. This is just the first step; to make @latest fully work, we'll need to also release a new tagged version, and verify that it works. While at it, update and simplify the 'go get' instructions in the README. For fuzzitdev#30.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The simplest fix is to:
go.modto saymodule github.com/fuzzitdev/fuzzit/v2GO111MODULE=on go get github.com/fuzzitdev/fuzzit/v2, and require Go 1.12 or later@latestpicks up that tag and not the broken v2.4.29