kubecolor
kubecolor copied to clipboard
module declares its path as: github.com/dty1er/kubecolor, but was required as: github.com/hidetatz/kubecolor
I guess the title is self explanatory
This seemed to work around it
go get -u github.com/dty1er/kubecolor/cmd/kubecolor
Still broken @hidetatz
# go install github.com/hidetatz/kubecolor/cmd/[email protected]
go install: github.com/hidetatz/kubecolor/cmd/[email protected]: github.com/hidetatz/[email protected]: parsing go.mod:
module declares its path as: github.com/dty1er/kubecolor
but was required as: github.com/hidetatz/kubecolor
# go version
go version go1.17.7 linux/amd64
Hi..
I installed the plugin with the following command with go version 1.17
go install github.com/dty1er/kubecolor/cmd/kubecolor@latest
Regards
This is still an issue...
It looks like you fixed the module, but never made a new tag, and thus go install
still pulls the old broken go.mod
file. Just cut a new tag with an incremented version like v1.0.0!
Until then, you can just run go install github.com/hidetatz/kubecolor/cmd/kubecolor@HEAD
to get this installed...