I recommend always using the command 

go install -v

This does two things

go install will store compiled packages in $GOPATH/pkg for reuse by subsequent 
compilation.

-v will print the name of every package as it is compiled. If the list is long 
the first time you invoke the command, this is because the go tool spotted you 
changed compiler versions.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to