mirror of
https://github.com/fluencelabs/marine.git
synced 2024-12-12 14:55:32 +00:00
10 lines
180 B
Bash
Executable File
10 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cargo update --aggressive;
|
|
marine build --release;
|
|
|
|
rm -f artifacts/* || true;
|
|
mkdir -p artifacts;
|
|
|
|
cp ../../target/wasm32-wasi/release/call_parameters.wasm artifacts/;
|