Boris <
boris.s...@gmail.com> writes:
> When I cd to src/ and say "go build agent/mysql/mysql-agent.go" I get
> mysql-agent executable. When I say "go build client/client.go" I get
> nothing. I assume this is because it would try to create executable
> named "client" which is existing directory. But when I cd to client/
> and say "go build client.go" I still get nothing. And when I stay in
> src/ and say "go build -o client-executable client/client.go" I still
> get nothing. In all cases "go build" outputs nothing and exit status
> is 0.