From 128bb597e40615307637cb28f7085ec4bda0c934 Mon Sep 17 00:00:00 2001 From: Rodrigo Silva Date: Mon, 18 Nov 2024 16:02:45 +0100 Subject: [PATCH] fix(backend): update Makefile to include version prefix in go-dep command The go-dep make command was missing a version prefix, causing a dependency resolution issue. This change fixes the command to use the correct version prefix. --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index 554ecfe20d9..d9f2c7caccf 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -26,7 +26,7 @@ PYTHON_DIR ?= "./python" all: build go-dep: - go install github.com/vektra/mockery/v2@2.43.0 + go install github.com/vektra/mockery/v2@v2.43.0 go install github.com/swaggo/swag/cmd/swag@v1.16.1 go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.53.3