From 17ae9c2e182b523d3dde601ad36950a1051166bf Mon Sep 17 00:00:00 2001 From: Tomofumi Hayashi Date: Mon, 15 Oct 2018 16:04:16 +0900 Subject: [PATCH] Fix TravisCI for the failure of 'go get golint' --- .travis.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index cebcd10b2..34d241d20 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,12 +13,7 @@ before_install: - go get github.com/mattn/goveralls install: - # workaround golint install error in https://github.com/golang/lint/issues/288 - - mkdir -p $GOPATH/src/golang.org/x - - pushd $GOPATH/src/golang.org/x - - git clone https://github.com/golang/lint.git - - go get github.com/golang/lint/golint - - popd + - go get -u golang.org/x/lint/golint before_script: - golint ./multus/... | grep -v ALL_CAPS | xargs -r false