mirror of
https://github.com/fluencelabs/examples
synced 2025-04-01 23:51:05 +00:00
9 lines
181 B
Bash
Executable File
9 lines
181 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -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/
|