Skip to content

Commit

Permalink
Fix test application build in quick start guide
Browse files Browse the repository at this point in the history
  • Loading branch information
mathias-arm committed Aug 23, 2023
1 parent a817148 commit 9f2de04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CLI_QUICKSTART.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 9f2de04

Please sign in to comment.