more typos

This commit is contained in:
Balazs Komuves 2023-12-15 19:26:08 +01:00
parent cb144df60a
commit 23dbd41be2
No known key found for this signature in database
GPG Key ID: F63B7AEF18435562
2 changed files with 6 additions and 3 deletions

View File

@ -50,11 +50,14 @@ You can edit `params.sh` to your taste before running the workflow scripts.
### Compile the circuit
First create the main component:
Create a build directory so we don't pollute the repo:
$ mkdir -p build
$ cd build
$ source ./cli_args.sh && ../../reference/nim/proof_input/cli $CLI_ARGS -v --circom="proof_main.circom"
After that, the first real step is to create the main component:
$ source ../cli_args.sh && ../../reference/nim/proof_input/cli $CLI_ARGS -v --circom="proof_main.circom"
Then compile the circuit:

View File

@ -15,7 +15,7 @@ CLI_ARGS="--depth=$MAXDEPTH \
--ncells=$NCELLS \
--index=$SLOTINDEX"
if [[ "$1" =~ "--export" ]]
if [[ "$1" == "--export" ]]
then
echo "exporting CLI_ARGS"
export CLI_ARGS