Skip to content

Commit

Permalink
make dev-deps should be dependant on deps
Browse files Browse the repository at this point in the history
  • Loading branch information
adriacidre committed Mar 3, 2017
1 parent 425c76b commit 615b625
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
install:
go install -v

deps: dev-deps
deps:
go get github.com/r3labs/sse
go get gopkg.in/redis.v3
go get github.com/nats-io/nats
go get github.com/dgrijalva/jwt-go

dev-deps:
dev-deps: deps
go get github.com/smartystreets/goconvey/convey
go get github.com/alecthomas/gometalinter
gometalinter --install
Expand Down
2 changes: 1 addition & 1 deletion circle.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
pre:
- make deps
- make dev-deps

test:
override:
Expand Down

0 comments on commit 615b625

Please sign in to comment.