Skip to content

Commit

Permalink
docs: Update example commands from cd script to cd ../script (#1697)
Browse files Browse the repository at this point in the history
  • Loading branch information
collinlowenburg authored Oct 26, 2024
1 parent e450d43 commit b5c6a41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Note: the `build.rs` file in the `script` directory will use run the above comma
To test your program, you can first execute your program without generating a proof. In general this is helpful for iterating on your program and verifying that it is correct.

```bash
cd script
cd ../script
RUST_LOG=info cargo run --release -- --execute
```

Expand All @@ -84,7 +84,7 @@ RUST_LOG=info cargo run --release -- --execute
When you are ready to generate a proof, you should run the script with the `--prove` flag that will generate a proof.

```bash
cd script
cd ../script
RUST_LOG=info cargo run --release -- --prove
```

Expand Down

0 comments on commit b5c6a41

Please sign in to comment.