Merge pull request #646 from mrunalp/fix_lint

lint: Use a fixed commit for gometalinter
This commit is contained in:
Mrunal Patel 2017-07-10 13:36:12 -07:00 committed by GitHub
commit 59646cc520

View file

@ -192,6 +192,9 @@ install.tools: .install.gitvalidation .install.gometalinter .install.md2man
.install.gometalinter: .gopathok
if [ ! -x "$(GOPATH)/bin/gometalinter" ]; then \
go get -u github.com/alecthomas/gometalinter; \
cd $(GOPATH)/src/github.com/alecthomas/gometalinter; \
git checkout 23261fa046586808612c61da7a81d75a658e0814; \
go install github.com/alecthomas/gometalinter; \
$(GOPATH)/bin/gometalinter --install; \
fi