mirror of
https://github.com/fluencelabs/examples
synced 2025-03-30 22:51:05 +00:00
15 lines
265 B
Bash
Executable File
15 lines
265 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
mkdir -p artifacts
|
|
rm -f artifacts/*.wasm
|
|
|
|
cd echo-service
|
|
fce build --release
|
|
cp target/wasm32-wasi/release/echo_service.wasm ../artifacts/
|
|
cd ..
|
|
|
|
cd greeting
|
|
fce build --release
|
|
cp target/wasm32-wasi/release/greeting.wasm ../artifacts/
|
|
cd ..
|