From acb27f4f1e3019340f4461f5dd1da70ba1a2ba75 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Tue, 6 Oct 2015 14:50:41 -0700 Subject: [PATCH] fix go get in makefile --- Makefile | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 6042a0fed..aac0782b0 100644 --- a/Makefile +++ b/Makefile @@ -5,18 +5,18 @@ PACKAGES = $(shell go list ./... | grep -v /vendor/) all: gen build deps: - go get golang.org/x/tools/cmd/cover - go get golang.org/x/tools/cmd/vet - go get github.com/kr/vexp - go get github.com/eknkc/amber/amberc - go get github.com/eknkc/amber - go get github.com/jteeuwen/go-bindata/... - go get github.com/elazarl/go-bindata-assetfs/... - go get github.com/dchest/jsmin - go get github.com/franela/goblin - go get github.com/go-swagger/go-swagger - go get github.com/PuerkitoBio/goquery - go get github.com/russross/blackfriday + go get -u golang.org/x/tools/cmd/cover + go get -u golang.org/x/tools/cmd/vet + go get -u github.com/kr/vexp + go get -u github.com/eknkc/amber/... + go get -u github.com/eknkc/amber + go get -u github.com/jteeuwen/go-bindata/... + go get -u github.com/elazarl/go-bindata-assetfs/... + go get -u github.com/dchest/jsmin + go get -u github.com/franela/goblin + go get -u github.com/go-swagger/go-swagger + go get -u github.com/PuerkitoBio/goquery + go get -u github.com/russross/blackfriday gen: gen_static gen_template gen_migrations