blob: 52215ba4971ee3cd6b305f1ab849b9d580d40f01 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# Require : Cargo (Rust)
# Build
if cargo build --workspace --release >/dev/null 2>&1; then
# Export
cargo run --manifest-path crates/build_helper/Cargo.toml --bin exporter
fi
|