mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2025-05-27 22:51:24 +00:00
10 lines
226 B
Bash
10 lines
226 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||
|
marine build --release
|
||
|
|
||
|
rm artifacts/* || true
|
||
|
mkdir -p artifacts
|
||
|
|
||
|
cp ../../target/wasm32-wasi/release/build_rs_test.wasm artifacts/
|