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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-26 01:50:44 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-04-28 20:54:34 +0300
commit65d0d02887b86661590e74f560cbda0d517b95c2 (patch)
tree8d488912aa3bb60a158cc71bbe0ba5e826cabd02 /Makefile.internal.mk
parent57de8e72fe96a0773b8f9ef95cf77300a90a66f0 (diff)
Replace make setup with go run and version suffixes
Changelog: other
Diffstat (limited to 'Makefile.internal.mk')
-rw-r--r--Makefile.internal.mk13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile.internal.mk b/Makefile.internal.mk
index b4cf5777..60e151e9 100644
--- a/Makefile.internal.mk
+++ b/Makefile.internal.mk
@@ -17,16 +17,3 @@ Q := $(if $V,,@)
.GOPATH/.ok:
mkdir -p .GOPATH
-
-.PHONY: bin/golangci-lint
-bin/golangci-lint: .GOPATH/.ok
- @test -x $@ || \
- { echo "Vendored golangci-lint not found, try running 'make setup'..."; exit 1; }
-
-bin/gotestsum: .GOPATH/.ok
- @test -x $@ || \
- { echo "Vendored gotestsum not found, try running 'make setup'..."; exit 1; }
-
-bin/mockgen: .GOPATH/.ok
- @test -x $@ || \
- { echo "Vendored mockgen not found, try running 'make setup'..."; exit 1; }