Skip to content

Commit 3b4aa8f

Browse files
authored
Install with --locked
1 parent 8dfec79 commit 3b4aa8f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tutorials/polkadot-sdk/parachains/zero-to-hero/set-up-a-template.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ This tutorial requires two essential tools:
3838
Install it by executing the following command:
3939

4040
```bash
41-
cargo install staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
41+
cargo install --locked staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
4242
```
4343

4444
This installs the `chain-spec-builder` binary.
@@ -48,7 +48,7 @@ This tutorial requires two essential tools:
4848
To install it, run the following command:
4949

5050
```bash
51-
cargo install polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
51+
cargo install --locked polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
5252
```
5353

5454
This installs the `polkadot-omni-node` binary.
@@ -69,7 +69,7 @@ The [Polkadot SDK Parachain Template](https://github.com/paritytech/polkadot-sdk
6969

7070
3. Compile the runtime:
7171
```bash
72-
cargo build --release
72+
cargo build --release --locked
7373
```
7474

7575
!!!tip

0 commit comments

Comments
 (0)