Skip to content

Commit

Permalink
fix(devx): Replace cargo run with cargo build in iota full node guides (
Browse files Browse the repository at this point in the history
#4706)

* fix(devx): Replace cargo run with cargo build in iota-node guides

* Update docs/content/references/exchange-integration-guide.mdx
  • Loading branch information
lucas-tortora authored Jan 13, 2025
1 parent a7c2b9e commit ac3a2fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/operator/iota-full-node/source.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ cp crates/iota-config/data/fullnode-template.yaml fullnode.yaml
Run the following command to compile the `iota-node`.

```shell
cargo run --release --bin iota-node
cargo build --release --bin iota-node
```

## 4. Start Services
Expand Down Expand Up @@ -208,7 +208,7 @@ Use the following steps to update your full node:
6. Recompile your IOTA full node:

```bash
cargo run --release --bin iota-node
cargo build --release --bin iota-node
```

7. Restart your IOTA full node:
Expand Down

0 comments on commit ac3a2fc

Please sign in to comment.