DHowett / go-plist

A pure Go Apple Property List transcoder
Other
416 stars 97 forks source link

Cannot 'go get' using go 1.11 modules #40

Closed maelvls closed 6 years ago

maelvls commented 6 years ago

Dear Go-plist, I hit a slight bump using GO111MODULE=on go get github.com/dhowett/go-plist:

go: finding github.com/dhowett/go-plist latest
go: github.com/dhowett/go-plist@v0.0.0-20181124034731-591f970eefbb: parsing go.mod: unexpected module path "howett.net/plist"
go: error loading module requirements

Have you an idea on what is causing that? :smiley:

maelvls commented 6 years ago

In go.mod: https://github.com/DHowett/go-plist/blob/591f970eefbbeb04d7b37f334a0c4c3256e32876/go.mod#L1

I guess it should read

module github.com/DHowett/go-plist
DHowett commented 6 years ago

Hi @maelvalais! The official canonical import path for this package is howett.net/plist. Sorry for any inconvenience.

maelvls commented 6 years ago

Hmm 🤔 some package I rely on is probably using the wrong address then

Sorry for that! Thank you!!