mirror of
https://github.com/fluencelabs/examples
synced 2024-12-13 07:05:31 +00:00
9 lines
241 B
Bash
Executable File
9 lines
241 B
Bash
Executable File
#!/usr/bin/env bash -o errexit -o nounset -o pipefail
|
|
|
|
# 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/greeting.wasm artifacts/
|