Skip to content

Commit

Permalink
fix: enclose cliargs in quotes when passing to cargo run
Browse files Browse the repository at this point in the history
  • Loading branch information
yourbuddyconner committed Sep 27, 2024
1 parent d1f80f2 commit ae95d48
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions eval.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ cargo run \
-p sp1-benchmarks-eval \
--release \
--no-default-features \
--features $FEATURES \
--features "$FEATURES" \
-- \
--program $1 \
--prover $2 \
--hashfn $3 \
--shard-size $4 \
--filename $5 \
--program "$1" \
--prover "$2" \
--hashfn "$3" \
--shard-size "$4" \
--filename "$5" \
${6:+--block-number $6}

0 comments on commit ae95d48

Please sign in to comment.