From d361c31caf87e1ecc07c23d44a005456ffd23b16 Mon Sep 17 00:00:00 2001 From: Claudia Beresford Date: Fri, 25 Nov 2022 14:05:19 +0000 Subject: [PATCH] fix: Install counterfeiter to correct location --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0392447..1584080 100644 --- a/Makefile +++ b/Makefile @@ -151,7 +151,7 @@ $(CONTROLLER_GEN): $(LOCALBIN) .PHONY: counterfeiter counterfeiter: $(COUNTERFEITER) $(COUNTERFEITER): $(LOCALBIN) - cd $(LOCALBIN); go build -o $(subst bin/,,$@) github.com/maxbrunsfeld/counterfeiter/v6 + cd $(LOCALBIN); go build -o . github.com/maxbrunsfeld/counterfeiter/v6 .PHONY: envtest envtest: $(ENVTEST) ## Download envtest-setup locally if necessary.