mirror of
https://github.com/fluencelabs/examples
synced 2025-04-03 16:41:06 +00:00
7 lines
176 B
Bash
7 lines
176 B
Bash
|
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
||
|
|
||
|
mkdir -p artifacts
|
||
|
rm -f artifacts/*.wasm
|
||
|
marine build --release
|
||
|
cp target/wasm32-wasi/release/ts_oracle.wasm artifacts/
|