When doing go build github.com/.../foo
from any directory, the compiled binary will be placed in the directory from which I executed the command. When doing go build /github.com/.../cmd/...
I expected all of the compiled binaries to appear in my current directory. But they don't.
How can I compile multiple/all binaries of that package into my current work dir?