From 0833045ff6d6ec36f25c986c2c2970216e096fe5 Mon Sep 17 00:00:00 2001 From: boneyard93501 <4523011+boneyard93501@users.noreply.github.com> Date: Mon, 11 Jul 2022 13:47:35 -0500 Subject: [PATCH] update scripts --- .../decentralized-blockchain-gateway/scripts/build.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/aqua-examples/decentralized-blockchain-gateway/scripts/build.sh b/aqua-examples/decentralized-blockchain-gateway/scripts/build.sh index fd4df2d..8673efc 100755 --- a/aqua-examples/decentralized-blockchain-gateway/scripts/build.sh +++ b/aqua-examples/decentralized-blockchain-gateway/scripts/build.sh @@ -3,20 +3,21 @@ mkdir -p artifacts rm -f artifacts/*.wasm +cd wasm-modules + cd curl-adapter cargo update --aggressive marine build --release -cp target/wasm32-wasi/release/curl_adapter.wasm ../artifacts/ - +cp target/wasm32-wasi/release/curl_adapter.wasm ../../artifacts/ cd ../multi-provider-query cargo update --aggressive marine build --release -cp target/wasm32-wasi/release/multi_provider_query.wasm ../artifacts/ +cp target/wasm32-wasi/release/multi_provider_query.wasm ../../artifacts/ cd ../simple-quorum cargo update --aggressive marine build --release -cp target/wasm32-wasi/release/simple_quorum.wasm ../artifacts/ +cp target/wasm32-wasi/release/simple_quorum.wasm ../../artifacts/ cd .. \ No newline at end of file