From 2cb202113574d22c9a0ada0cd31c4adb8889b308 Mon Sep 17 00:00:00 2001 From: Matt Farina Date: Thu, 17 Mar 2016 19:33:35 -0400 Subject: [PATCH] fix(Makefile): Install Glide with go get -u go get -u is used to install and handle the other dependencies, such as gox, golint, and vet. Use the same method for Glide. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5488e3d88..4c7ad5284 100644 --- a/Makefile +++ b/Makefile @@ -81,7 +81,7 @@ ifndef HAS_PIP $(error Please install the latest version of Python pip) endif ifndef HAS_GLIDE - go get github.com/Masterminds/glide + go get -u github.com/Masterminds/glide endif ifndef HAS_GOLINT go get -u github.com/golang/lint/golint