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:
authorJaime Martinez <jmartinez@gitlab.com>2022-01-24 02:37:36 +0300
committerfeistel <6742251-feistel@users.noreply.gitlab.com>2022-01-24 02:38:39 +0300
commitb60718bb0264f2efedf8e9c48d20053652eabeec (patch)
treebc046e8990b5c0f81ccdc368a344ef30a225bb53 /Makefile.build.mk
parent7aafa7bf5c5b1bfcae404b6dc2850757b7f00d78 (diff)
fix: fix client_stub mock path
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 cdd2f295..562c9b86 100644
--- a/Makefile.build.mk
+++ b/Makefile.build.mk
@@ -17,7 +17,7 @@ cisetup: .GOPATH/.ok
generate-mocks: .GOPATH/.ok
$Q bin/mockgen -source=internal/interface.go -destination=internal/mocks/mocks.go -package=mocks
$Q bin/mockgen -source=internal/source/source.go -destination=internal/mocks/source.go -package=mocks
- $Q bin/mockgen -source=internal/mocks/client_stub.go -destination=internal/mocks/client.go -package=mocks
+ $Q bin/mockgen -source=internal/mocks/api/client_stub.go -destination=internal/mocks/client.go -package=mocks
build: .GOPATH/.ok
$Q GOBIN=$(CURDIR)/bin go install $(if $V,-v) $(VERSION_FLAGS) -tags "${GO_BUILD_TAGS}" -buildmode exe $(IMPORT_PATH)