Here is the output of the install command:
$ go install -v github.com/matttproud/hodler/cmd/hodler@latest
go: finding module for package github.com/DHowett/go-plist
go: found github.com/DHowett/go-plist in github.com/DHowett/go-plist v1.0.0
go: github.com/matttproud/hodler/cmd/hodler imports
github.com/DHowett/go-plist: github.com/DHowett/go-plist@v1.0.0: parsing go.mod:
module declares its path as: howett.net/plist
but was required as: github.com/DHowett/go-plist
I'm not really sure why, but it seems like in the installation it looks for an older version of the file.
Removing the @latest tag in installation fixes the problem.
Here is the output of the install command:
I'm not really sure why, but it seems like in the installation it looks for an older version of the file.
Removing the
@latesttag in installation fixes the problem.