mirror of
https://github.com/fluencelabs/examples
synced 2025-03-21 18:50:48 +00:00
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -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/
|