This is an automated email from the ASF dual-hosted git repository.
pdesai pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-wskdeploy.git
The following commit(s) were added to refs/heads/master by this push:
new 4ad4b9c Fix the failure for golint (#995)
4ad4b9c is described below
commit 4ad4b9c6183f636fe50e8ac9d8a59cf99482fbcb
Author: Vincent <[email protected]>
AuthorDate: Fri Oct 12 12:11:39 2018 -0400
Fix the failure for golint (#995)
---
.travis.yml | 2 +-
build.gradle | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index dc9f932..657c98e 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,7 +21,7 @@ before_install:
- "./tools/travis/cloneutils.sh"
install:
- export DEPLOY_BUILD_READY=false
-- go get -u github.com/golang/lint/golint
+- go get -u golang.org/x/lint/golint
- go get -u github.com/stretchr/testify
- go get -u github.com/tools/godep
before_script:
diff --git a/build.gradle b/build.gradle
index 740271a..bd194b9 100644
--- a/build.gradle
+++ b/build.gradle
@@ -220,7 +220,7 @@ if (rootProject.hasProperty('buildPlatforms')) {
The get step is needed to be sure a golint binary is available to run.
*/
task getGoLint(type: com.github.blindpirate.gogradle.Go) {
- go 'get -u github.com/golang/lint/golint'
+ go 'get -u golang.org/x/lint/golint'
}
task goLint(type: com.github.blindpirate.gogradle.Go, dependsOn: getGoLint) {