Description
What version of Go are you using (go version
)?
$ go version
go version go1.7.3 darwin/amd64
What did you do?
go get
appears to have no useful feedback by default.
To reproduce:
go get github.com/die-net/dhtproxy
This then appears to freeze for about 10-15 minutes. There is no feedback.
Eventually figured out that I can:
go get -u -v github.com/die-net/dhtproxy
To see the progress, and it appears that because youtube/vitess
is absolutely gigantic, this command takes forever.
What did you expect to see?
I expected to see something along the lines of "Fetching project, fetching deps, installing deps, etc", with some kind of progress bar.
What did you see instead?
Nothing. It just sits there for about 10 minutes. I thought it was broken.
The solution is obvious - enable -v
by default. It's terrible CLI design to have a process run for 10 minutes with no output by default, it just seems like it's broken.