Masterminds / glide

Package Management for Golang
https://glide.sh
Other
8.15k stars 541 forks source link

How to ONLY get a package and NOT UPDATE the entire vendor? #1058

Closed jaswdr closed 5 years ago

jaswdr commented 5 years ago

I want ONLY to install a single package and it dependencies, how can I do this with glide? I didn't want to update my entirely vendor.

edupaim commented 5 years ago

Why do you intend to upgrade only 1 package?

jaswdr commented 5 years ago

@edupaim is not upgrade, when I use glide get <module> it always update all dependencies, even if I only want to get that single package, but never mind I migrate to go mod, thanks.