diff --git a/scripts/babylon/build.sh b/scripts/babylon/build.sh index 8912049..d2d46f2 100644 --- a/scripts/babylon/build.sh +++ b/scripts/babylon/build.sh @@ -1,11 +1,12 @@ #!/usr/bin/env bash set -euo pipefail +set -x cd "${DEPOT_PROJECT_NAME}" mkdir bin # Grab static libwasmvm -wasmvm_version="$(go list -json -m all | jq -cer 'select(.Path == "github.com/CosmWasm/wasmvm/v2") | .Replace.Version // .Version')" +wasmvm_version="$(go list -json -m all | jq -cr 'select(.Path == "github.com/CosmWasm/wasmvm/v2") | .Replace.Version // .Version')" curl -JLO "https://github.com/CosmWasm/wasmvm/releases/download/${wasmvm_version}/libwasmvm_muslc.x86_64.a" ln -s libwasmvm_muslc.x86_64.a libwasmvm.x86_64.a