this is my circumstance:
in my codebase, i have installed gin-gonic through command glide get. when i try to install go-i18n
through command glide get github.com/nicksnyder/go-i18n, the command try to update gin-gonic as well. is it possible to disable it ? maybe a switch should be provided.
glide get github.com/gin-gonic/gin
[INFO] Preparing to install 1 package.
[INFO] Importing github.com/gin-gonic/gin
[INFO] Downloading dependencies. Please wait...
[INFO] Fetching updates for github.com/gin-gonic/gin.
[INFO] Resolving imports
[INFO] Downloading dependencies. Please wait...
glide get github.com/nicksnyder/go-i18n
[INFO] Preparing to install 1 package.
[INFO] Importing github.com/nicksnyder/go-i18n
[INFO] Downloading dependencies. Please wait...
[INFO] Fetching updates for github.com/nicksnyder/go-i18n.
[INFO] Fetching updates for github.com/gin-gonic/gin.
[INFO] Resolving imports
[INFO] Downloading dependencies. Please wait...
glide : 0.10.2 os : windows 7 32bit
this is my circumstance: in my codebase, i have installed
gin-gonic
through commandglide get
. when i try to installgo-i18n
through commandglide get github.com/nicksnyder/go-i18n
, the command try to update gin-gonic as well. is it possible to disable it ? maybe a switch should be provided.