I'm using the latest release 0.20.4 trying to add goreleaser to a new project. When I run using defaults created with init I get the following:
Running goreleaser 0.20.4
Setting defaults
Getting and validating git state
Loading environment variables
Building binaries
-> Building dist/pinpt_0.0.1_linux_amd64/pinpt
-> Building dist/pinpt_0.0.1_linux_386/pinpt
-> Building dist/pinpt_0.0.1_darwin_386/pinpt
-> Building dist/pinpt_0.0.1_darwin_amd64/pinpt
build failed: darwin/386
go build github.com/pinpt/worker/vendor/gopkg.in/libgit2/git2go.v24: no buildable Go source files in /Users/jhaynie/go/src/github.com/pinpt/worker/vendor/gopkg.in/libgit2/git2go.v24
I'm using the libgit2 package in my project. When i build using go build ./ go builds a darwin binary fine. I can't seem to figure out why it's getting this error. I also can't figure out how to turn on more debug logging.
Any ideas?
I'm using the latest release 0.20.4 trying to add goreleaser to a new project. When I run using defaults created with
initI get the following:I'm using the libgit2 package in my project. When i build using
go build ./go builds a darwin binary fine. I can't seem to figure out why it's getting this error. I also can't figure out how to turn on more debug logging.Any ideas?