Skip to content

Commit f0ff202

Browse files
authored
fix(backend): update Makefile to include version prefix in go-dep command (#8197)
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.
1 parent d821cbc commit f0ff202

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ PYTHON_DIR ?= "./python"
2727
all: build
2828

2929
go-dep:
30-
go install github.com/vektra/mockery/v2@2.43.0
30+
go install github.com/vektra/mockery/v2@v2.43.0
3131
go install github.com/swaggo/swag/cmd/[email protected]
3232
go install github.com/golangci/golangci-lint/cmd/[email protected]
3333

0 commit comments

Comments
 (0)