summaryrefslogtreecommitdiff
path: root/export.sh
blob: e508d795436a43fe033f0fd64eed879e0443a539 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

# Require : Cargo (Rust)

# Build
if cargo build --workspace --release; then
    # Export
    cargo run --manifest-path crates/build_helper/Cargo.toml --bin exporter
fi