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-01-26 20:51:34 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-02-06 01:08:33 +0300
commitf180f94fc467a0151d8e7cd7eb76fc8dcb0b6348 (patch)
tree2226c0a799a52694e293ac4ecaefe00b5a3b0109 /Makefile.build.mk
parentffd99e3590be251968f5904dcf0e5e6669b57632 (diff)
build: don't skip mockgen during cisetup task
Diffstat (limited to 'Makefile.build.mk')
-rw-r--r--Makefile.build.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.build.mk b/Makefile.build.mk
index 6f6c6bc1..88d74dbf 100644
--- a/Makefile.build.mk
+++ b/Makefile.build.mk
@@ -19,7 +19,7 @@ setup: .GOPATH/.ok
cisetup: .GOPATH/.ok
mkdir -p bin/
# Installing dev tools defined in go.tools
- awk '/_/ {print $$2}' ./tools/main.go | grep -v -e mockgen -e golangci | xargs -tI % go install ${V:+-v -x} -modfile=tools/go.mod -mod=mod %
+ awk '/_/ {print $$2}' ./tools/main.go | grep -v -e golangci | xargs -tI % go install ${V:+-v -x} -modfile=tools/go.mod -mod=mod %
generate-mocks: .GOPATH/.ok bin/mockgen
$Q bin/mockgen -source=internal/interface.go -destination=internal/handlers/mock/handler_mock.go -package=mock