Skip to content

Commit

Permalink
fix(backend): update Makefile to include version prefix in go-dep com…
Browse files Browse the repository at this point in the history
…mand

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.
  • Loading branch information
rodrigoluizs committed Nov 19, 2024
1 parent f5e4b68 commit 6fde0fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,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/[email protected]
go install github.com/golangci/golangci-lint/cmd/[email protected]

Expand Down

0 comments on commit 6fde0fd

Please sign in to comment.