From 11b8b692ec46d533811322771f8662e947cf9380 Mon Sep 17 00:00:00 2001 From: Christian Jackson-Gruber Date: Tue, 29 Oct 2024 14:52:57 -0700 Subject: [PATCH] Remove extra replace, with a more targeted one. --- deployment/go.mod | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/deployment/go.mod b/deployment/go.mod index ce15ace764d..2a51909afaf 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 -)