From b5c6a41816db138a84371178a84538356cd9addd Mon Sep 17 00:00:00 2001 From: Collin Lowenburg Date: Fri, 25 Oct 2024 17:48:31 -0700 Subject: [PATCH] docs: Update example commands from cd script to cd ../script (#1697) --- book/getting-started/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/getting-started/quickstart.md b/book/getting-started/quickstart.md index f5aa888858..824ddbf857 100644 --- a/book/getting-started/quickstart.md +++ b/book/getting-started/quickstart.md @@ -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 ``` @@ -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 ```