Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Vosmaer <jacob@gitlab.com>2018-05-31 17:49:37 +0300
committerJacob Vosmaer <jacob@gitlab.com>2018-05-31 17:49:37 +0300
commitfa302c0dfd131aa4c9dcd0ccf71b0f664c45ae87 (patch)
tree442c9b93c110fee1bc6bd1896bc64a12685c06e1
parent1e22488dd549bc435e5c047bd364efd9a0fdf939 (diff)
Remove golint download workaround
-rw-r--r--Makefile9
1 files changed, 1 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index a47e6a7b7..7ec1b220b 100644
--- a/Makefile
+++ b/Makefile
@@ -196,14 +196,7 @@ $(GOVENDOR): $(TARGET_SETUP)
# Install golint
$(GOLINT): $(TARGET_SETUP)
- # We should run only this: go get -v golang.org/x/lint/golint
- # But that is currently (2018-04-23) broken so we have this clunky workaround.
- mkdir -p $(GOPATH)/src/golang.org/x
- rm -rf $(GOPATH)/src/golang.org/x/lint
- git clone --quiet https://github.com/golang/lint $(GOPATH)/src/golang.org/x/lint
- rm -rf $(GOPATH)/src/golang.org/x/tools
- git clone --quiet https://github.com/golang/tools $(GOPATH)/src/golang.org/x/tools
- go install golang.org/x/lint/golint
+ go get -v golang.org/x/lint/golint
# Install gocovmerge
$(GOCOVMERGE): $(TARGET_SETUP)