From ea25bc70cd5197c97a74045d6a8aa451a074965e Mon Sep 17 00:00:00 2001 From: Vincent Batts Date: Fri, 10 Mar 2023 12:38:01 -0500 Subject: [PATCH] backend/Makefile: set GOBIN for codegen Signed-off-by: Vincent Batts --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index 670e98d67..b82859dbc 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -110,7 +110,7 @@ swagger-init: tools/swag .PHONY: tools/codegen tools/codegen: - go install github.com/deepmap/oapi-codegen/cmd/oapi-codegen@v1.12.2 + env GOBIN=$(CURDIR)/tools/ go install github.com/deepmap/oapi-codegen/cmd/oapi-codegen@v1.12.4 .PHONY: codegen codegen: tools/codegen