From 9f2de0497a52683b0ec00de1f48a1ea0f10f6118 Mon Sep 17 00:00:00 2001 From: Mathias Brossard Date: Wed, 23 Aug 2023 13:09:13 -0500 Subject: [PATCH] Fix test application build in quick start guide --- CLI_QUICKSTART.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CLI_QUICKSTART.markdown b/CLI_QUICKSTART.markdown index 16b81c1a9..66c353398 100644 --- a/CLI_QUICKSTART.markdown +++ b/CLI_QUICKSTART.markdown @@ -63,11 +63,11 @@ Veracruz supports the direct execution of non-WebAssembly native code via the compile the example to WebAssembly, which Rust makes very easy for us: ``` bash -$ cargo build \ - --manifest-path=workspaces/applications/Cargo.toml \ +$ (cd workspaces/applications ; \ + cargo build \ --target wasm32-wasi \ --release \ - --package shamir-secret-sharing + --package shamir-secret-sharing) ``` You should now find the example compiled to WebAssembly in the `target/wasm32-wasi/release`