Skip to content

Commit

Permalink
make: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
suyash committed Mar 13, 2017
1 parent e617725 commit 87d55e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ before_install:
install: true
before_script:
- make
- make clean_string
script:
- make race
- make lint
Expand Down
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ deps:
gometalinter.v1 --install

lint:
gometalinter.v1 ./... --vendor --deadline=10000s --dupl-threshold=100 --disable=interfacer --disable=gas
gometalinter.v1 ./... --vendor --deadline=1000000s --dupl-threshold=100 --disable=interfacer --disable=gas
# https://lists.gnu.org/archive/html/help-gnu-utils/2004-08/msg00025.html
expr "$$?" '<=' 1 > /dev/null

test:
test:
go test -v ./...

race:
Expand Down

0 comments on commit 87d55e9

Please sign in to comment.