matm/gocov-html

Latest version 1.1.1 breaks go install

msdean opened this issue · 4 comments

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

@msdean , we were also affected 😉
But after looking into the last changes I found, that also the README.md changed (besides the related code changes).

So, from now on you need to use
go install github.com/matm/gocov-html/cmd/gocov-html@latest (see the additional /cmd/gocov-html)

Ah, good ol' RTFM....
Thanks for the quick response :)

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.

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)