From ae95d48162185f380b3c32032778589ab44983ac Mon Sep 17 00:00:00 2001 From: Conner Swann <2635475+yourbuddyconner@users.noreply.github.com> Date: Thu, 26 Sep 2024 18:07:12 -0700 Subject: [PATCH] fix: enclose cliargs in quotes when passing to cargo run --- eval.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/eval.sh b/eval.sh index eda410c..4256516 100755 --- a/eval.sh +++ b/eval.sh @@ -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} \ No newline at end of file