mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
9 lines
203 B
Bash
9 lines
203 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
|
||
|
rm artifacts/*
|
||
|
cp ../../target/wasm32-wasi/release/greeting.wasm artifacts/
|