On Wednesday, 4 October 2017 09:44:48 UTC+2, alexandre...@gmail.com wrote:
>
> I do want it to get all the dependencies (basic HTTP/S fetch). I just 
> don't want it to worry about Git or any other VCS, since I just downloaded 
> a snapshot as a tarball.
>

go get cannot do this directly for you as this simply is
not the intended use of go get. go get is "all or nothing"
and cannot be plugged in halfway during the installation.

If you want to download the dependencies: List them
(you might want to try go list -f '{{ join .Imports "\n" }}')
and download the desired/missing ones via go get .

V.

-- 
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