↳
In-reply-to
»
@doesnm No it's all good... I've just rebuilt it from master and it doesn't look like anything is broken:
⤋ Read More
@doesnm@doesnm.p.psf.lt You don’t generally call go build main.go
or whatever. You generally call go build .
or go build ./cmd/foo/...
– Because you need to tell the compiler to build a whole package or a bunch of sub-packages + main. go run main.go
only works for the simplest case.