mirror of
https://github.com/logos-storage/proof-aggregation.git
synced 2026-01-02 22:03:10 +00:00
11 lines
269 B
Bash
Executable File
11 lines
269 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Source the parameters from params.sh
|
|
source ./params.sh
|
|
|
|
# Build
|
|
cargo build --release || { echo "gen_input.sh: cargo build failed"; exit 101; }
|
|
|
|
# Run the Rust executable
|
|
cargo run --bin gen_input || { echo "gen_input.sh: cargo run failed"; exit 102; }
|