mirror of
https://github.com/fluencelabs/examples
synced 2024-12-13 07:05:31 +00:00
11 lines
241 B
Bash
11 lines
241 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||
|
cargo update --aggressive
|
||
|
marine build --release
|
||
|
|
||
|
rm artifacts/* || true
|
||
|
mkdir -p artifacts
|
||
|
|
||
|
cp target/wasm32-wasi/release/consumer.wasm artifacts/
|