1
0
mirror of https://github.com/fluencelabs/examples synced 2025-04-03 08:31:08 +00:00

11 lines
275 B
Bash
Raw Normal View History

#!/usr/bin/env bash
set -o errexit -o nounset -o pipefail
2021-04-08 00:08:22 -05:00
# This script builds all subprojects and puts all created Wasm modules in one dir
mkdir -p artifacts
# cargo update
fce build --release
rm artifacts/*.wasm
cp target/wasm32-wasi/release/echo_service.wasm artifacts/