Skip to content

Commit

Permalink
chore: idk why travis complains about this one
Browse files Browse the repository at this point in the history
  • Loading branch information
caarlos0 committed May 17, 2018
1 parent 91995af commit d2eaeef
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Makefile
Expand Up @@ -15,7 +15,6 @@ else
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
endif
dep ensure
gometalinter --install
echo "make check" > .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit
.PHONY: setup
Expand Down

1 comment on commit d2eaeef

@elyscape
Copy link

@elyscape elyscape commented on d2eaeef May 23, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@caarlos0 Travis was complaining about this because gometalinter --install assumes you've installed gometalinter with go get and that the other commands are already available in your GOPATH somewhere. That being said, it's not necessary since 4fb7970, as the godownloader script also installs all the linting tools.

Please sign in to comment.