mirror of
https://github.com/codex-storage/proof-aggregation.git
synced 2025-02-13 15:16:58 +00:00
11 lines
262 B
Bash
Executable File
11 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Source the parameters from params.sh
|
|
source ./circ_params.sh
|
|
|
|
# Build
|
|
cargo build --release || { echo "prove.sh: cargo build failed"; exit 101; }
|
|
|
|
# Run the Rust executable
|
|
cargo run --bin prove || { echo "prove.sh: cargo run failed"; exit 102; }
|