mirror of
https://github.com/fluencelabs/fluent-pad
synced 2025-04-25 08:52:14 +00:00
15 lines
336 B
Bash
15 lines
336 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
cd user-list-inmemory
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
cd ../history-inmemory
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
|
||
|
cd ../
|
||
|
rm -f artifacts/user-list.wasm
|
||
|
rm -f artifacts/history.wasm
|
||
|
cp user-list-inmemory/target/wasm32-wasi/release/user-list.wasm artifacts/
|
||
|
cp history-inmemory/target/wasm32-wasi/release/history.wasm artifacts/
|