Skip to content

Commit

Permalink
fix go get in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
bradrydzewski committed Oct 6, 2015
1 parent 9555f50 commit acb27f4
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit acb27f4

Please sign in to comment.