Latest version 1.1.1 breaks go install
msdean opened this issue · 4 comments
msdean commented
Latest version tag seems to be broken:
$ go install github.com/matm/gocov-html@latest
go: github.com/matm/gocov-html@latest: module github.com/matm/gocov-html@latest found (v1.1.1), but does not contain package github.com/matm/gocov-html
I'm using go 1.18.1 on ubuntu18
SandroPreuss1234 commented
msdean commented
Ah, good ol' RTFM....
Thanks for the quick response :)
vintagego commented
Hi, is this resolved I have updated this dependency to go get github.com/matm/gocov-html/cmd/gocov-html however, its still breaking for me.
msdean commented
Try go install github.com/matm/gocov-html/cmd/gocov-html
instead of go get github.com/matm/gocov-html/cmd/gocov-html
(install
instead of get
)