mirror of
https://github.com/fluencelabs/examples
synced 2025-04-25 10:42:16 +00:00
11 lines
321 B
Bash
11 lines
321 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/sqlite_runner.wasm artifacts/
|
||
|
# wget https://github.com/fluencelabs/sqlite/releases/download/v0.10.0_w/sqlite3.wasm
|
||
|
# mv sqlite3.wasm artifacts/
|