From 636ffd4e92a393c2dc3b528f9a7188d7f3430abd Mon Sep 17 00:00:00 2001 From: wizard <112275929+famouswizard@users.noreply.github.com> Date: Fri, 12 Sep 2025 12:57:07 +0300 Subject: [PATCH] Fix: missing file handling and speed up execution --- scripts/run_all.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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