From d3af9105ee59dbae9b6179f88b8474c29d34e48a Mon Sep 17 00:00:00 2001 From: Joe Julian Date: Wed, 19 Oct 2016 09:54:15 -0700 Subject: [PATCH] Use the download-only flag when fetching dependencies --- misc/make-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/make-deps.sh b/misc/make-deps.sh index 181ed611..42cbddaf 100755 --- a/misc/make-deps.sh +++ b/misc/make-deps.sh @@ -48,7 +48,7 @@ if go version | grep 'go1\.[0123]\.'; then exit 1 fi -go get ./... # get all the go dependencies +go get -d ./... # get all the go dependencies [ -e "$GOBIN/mgmt" ] && rm -f "$GOBIN/mgmt" # the `go get` version has no -X # vet is built-in in go 1.6 - we check for go vet command go vet 1> /dev/null 2>&1