mirror of
https://github.com/fluencelabs/fluence-service-template
synced 2024-12-04 16:00:17 +00:00
10 lines
161 B
Bash
Executable File
10 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cargo update --aggressive
|
|
marine build --release
|
|
|
|
rm artifacts/* || true
|
|
mkdir -p artifacts
|
|
|
|
cp ./target/wasm32-wasi/release/greeting.wasm artifacts/
|