Skip to content

Commit

Permalink
fix install cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
ghettovoice committed Jun 16, 2018
1 parent 95c11c0 commit b236485
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: go
go:
- 1.9
- '1.10'
install:
- go get github.com/mattn/goveralls
- make install
Expand Down
10 changes: 6 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@ GOFLAGS=

install:
cd $$GOPATH/src/$(PKG_NAME); \
go get -v \
github.com/wadey/gocovmerge; \
go get -v -t ./...; \
go get -v -u github.com/wadey/gocovmerge; \
go get -v -u github.com/sqs/goreturns; \
go get -v -u github.com/onsi/ginkgo; \
go get -v -u github.com/onsi/gomega/...; \
go get -v -t -u ./...; \
go install $(LDFLAGS)

test:
Expand Down Expand Up @@ -43,4 +45,4 @@ cover-merge:

format:
cd $$GOPATH/src/$(PKG_NAME); \
go fmt *.go
goreturns -w */**

0 comments on commit b236485

Please sign in to comment.