diff --git a/scripts/run_all.sh b/scripts/run_all.sh index 555e8baf..4da66658 100644 --- a/scripts/run_all.sh +++ b/scripts/run_all.sh @@ -1,6 +1,8 @@ # Run this in the `noir-r1cs` directory! +shopt -s nullglob +cargo build --release --bin circuit_stats for file in noir-passport-examples/*.json; do echo "$file" - cargo run --bin circuit_stats -- "$file" noir-examples/basic/target/basic.gz -done \ No newline at end of file + ./target/release/circuit_stats "$file" noir-examples/basic/target/basic.gz +done