Skip to content

Commit

Permalink
Query exact wasmvm module rather than parsing all (#14425)
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryNguyen5 committed Sep 14, 2024
1 parent baf36ec commit 2c70edc
Showing 1 changed file with 1 addition and 1 deletion.
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 2c70edc

Please sign in to comment.