From 682276ea923989fc11ef0c2ae98c1e496d4da7f6 Mon Sep 17 00:00:00 2001 From: George Blue Date: Fri, 4 Oct 2024 13:04:31 +0100 Subject: [PATCH] chore: fix Makefile local-csb task (#2142) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 687f1697b..5530ebcf8 100644 --- a/Makefile +++ b/Makefile @@ -175,7 +175,7 @@ latest-csb: ## point to the very latest CSB on GitHub .PHONY: local-csb local-csb: ## point to a local CSB repo - echo "replace \"github.com/cloudfoundry/cloud-service-broker\" => \"$$PWD/../cloud-service-broker\"" >>go.mod + echo "replace \"github.com/cloudfoundry/cloud-service-broker/v2\" => \"$$PWD/../cloud-service-broker\"" >>go.mod go mod tidy ###### lint ###################################################################