mirror of
https://github.com/fluencelabs/examples
synced 2024-12-15 15:45:39 +00:00
10 lines
260 B
Bash
10 lines
260 B
Bash
|
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
||
|
|
||
|
# This script builds all subprojects and puts all created Wasm modules in one dir
|
||
|
mkdir -p artifacts
|
||
|
cargo update
|
||
|
fce build --release
|
||
|
|
||
|
rm artifacts/*
|
||
|
cp target/wasm32-wasi/release/greeting.wasm artifacts/
|