From 66e3488d9b1667f9cc45598d73fac5e54b69c9ec Mon Sep 17 00:00:00 2001 From: Christian Edward Jackson-Gruber Date: Mon, 11 Nov 2024 15:28:10 -0800 Subject: [PATCH] Remove extra replace, with a more targeted one. (#15018) --- deployment/go.mod | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/deployment/go.mod b/deployment/go.mod index a572f078ca0..4601e1e6bb2 100644 --- a/deployment/go.mod +++ b/deployment/go.mod @@ -5,6 +5,9 @@ go 1.22.8 // Make sure we're working with the latest chainlink libs replace github.com/smartcontractkit/chainlink/v2 => ../ +// replicating the replace directive on cosmos SDK +replace github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 + require ( github.com/AlekSi/pointer v1.1.0 github.com/Khan/genqlient v0.7.0 @@ -518,11 +521,3 @@ require ( sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect sigs.k8s.io/yaml v1.4.0 // indirect ) - -replace ( - // replicating the replace directive on cosmos SDK - github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/sourcegraph/sourcegraph => github.com/sourcegraph/sourcegraph-public-snapshot v0.0.0-20240822153003-c864f15af264 - - github.com/sourcegraph/sourcegraph/lib => github.com/sourcegraph/sourcegraph-public-snapshot/lib v0.0.0-20240822153003-c864f15af264 -)