mirror of
https://github.com/fluencelabs/examples
synced 2025-03-25 12:21:07 +00:00
8 lines
198 B
Bash
Executable File
8 lines
198 B
Bash
Executable File
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
|
cargo update --aggressive
|
|
|
|
mkdir -p artifacts
|
|
rm -f artifacts/*.wasm
|
|
marine build --release
|
|
cp target/wasm32-wasi/release/adder.wasm artifacts/
|