fix go get in makefile

This commit is contained in:
Brad Rydzewski 2015-10-06 14:50:41 -07:00
parent 9555f50215
commit acb27f4f1e

View file

@ -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