Skip to content

Commit

Permalink
Merge pull request #14466 from smartcontractkit/hotfix/go-mod-dep
Browse files Browse the repository at this point in the history
hotfix: go-mod dep issue
  • Loading branch information
momentmaker authored Sep 18, 2024
2 parents a0580bc + cbf497a commit aad7af6
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 1 deletion.
2 changes: 2 additions & 0 deletions core/scripts/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -373,3 +373,5 @@ replace (
github.com/mwitkow/grpc-proxy => github.com/smartcontractkit/grpc-proxy v0.0.0-20230731113816-f1be6620749f

)

replace github.com/sourcegraph/sourcegraph/lib => github.com/sourcegraph/sourcegraph-public-snapshot/lib v0.0.0-20240822153003-c864f15af264
2 changes: 2 additions & 0 deletions dashboard-lib/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,5 @@ require (
github.com/stretchr/testify v1.9.0 // indirect
golang.org/x/sys v0.16.0 // indirect
)

replace github.com/sourcegraph/sourcegraph/lib => github.com/sourcegraph/sourcegraph-public-snapshot/lib v0.0.0-20240822153003-c864f15af264
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -361,3 +361,5 @@ replace (
// until merged upstream: https://github.com/mwitkow/grpc-proxy/pull/69
github.com/mwitkow/grpc-proxy => github.com/smartcontractkit/grpc-proxy v0.0.0-20230731113816-f1be6620749f
)

replace github.com/sourcegraph/sourcegraph/lib => github.com/sourcegraph/sourcegraph-public-snapshot/lib v0.0.0-20240822153003-c864f15af264
2 changes: 2 additions & 0 deletions integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -531,3 +531,5 @@ replace (
github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.14.0
github.com/prometheus/common => github.com/prometheus/common v0.42.0
)

replace github.com/sourcegraph/sourcegraph/lib => github.com/sourcegraph/sourcegraph-public-snapshot/lib v0.0.0-20240822153003-c864f15af264
2 changes: 2 additions & 0 deletions integration-tests/load/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -564,3 +564,5 @@ replace (
k8s.io/sample-controller => k8s.io/sample-controller v0.28.2
sigs.k8s.io/controller-runtime => sigs.k8s.io/controller-runtime v0.16.2
)

replace github.com/sourcegraph/sourcegraph/lib => github.com/sourcegraph/sourcegraph-public-snapshot/lib v0.0.0-20240822153003-c864f15af264
2 changes: 1 addition & 1 deletion tools/bin/goreleaser_utils
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ _get_arch() {
_get_wasmvm_lib_path() {
local -r platform="$1"
local -r arch="$2"
wasmvm_dir=$(go list -json -m all | jq -r '. | select(.Path == "github.com/CosmWasm/wasmvm") | .Dir')
wasmvm_dir=$(go list -json -m github.com/CosmWasm/wasmvm | jq -r '.Dir')
shared_lib_dir="$wasmvm_dir/internal/api"
lib_name="libwasmvm"
if [ "$platform" == "darwin" ]; then
Expand Down

0 comments on commit aad7af6

Please sign in to comment.