Commit 2cb20211 authored by Matt Farina's avatar Matt Farina

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.
parent 3efce30e
...@@ -81,7 +81,7 @@ ifndef HAS_PIP ...@@ -81,7 +81,7 @@ ifndef HAS_PIP
$(error Please install the latest version of Python pip) $(error Please install the latest version of Python pip)
endif endif
ifndef HAS_GLIDE ifndef HAS_GLIDE
go get github.com/Masterminds/glide go get -u github.com/Masterminds/glide
endif endif
ifndef HAS_GOLINT ifndef HAS_GOLINT
go get -u github.com/golang/lint/golint go get -u github.com/golang/lint/golint
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment