kubecolor icon indicating copy to clipboard operation
kubecolor copied to clipboard

module declares its path as: github.com/dty1er/kubecolor, but was required as: github.com/hidetatz/kubecolor

Open vishal-h opened this issue 3 years ago • 5 comments

vishal-h avatar Nov 26 '21 07:11 vishal-h

I guess the title is self explanatory

vishal-h avatar Nov 26 '21 07:11 vishal-h

This seemed to work around it

go get -u github.com/dty1er/kubecolor/cmd/kubecolor

jamesholcomb avatar Dec 04 '21 17:12 jamesholcomb

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

Hades32 avatar Mar 04 '22 12:03 Hades32

Hi..

I installed the plugin with the following command with go version 1.17

go install github.com/dty1er/kubecolor/cmd/kubecolor@latest

Regards

diegoumba avatar Mar 17 '22 21:03 diegoumba

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...

integrii avatar Jun 09 '22 00:06 integrii