Skip to content

Commit bc7b3b1

Browse files
0xLuccaggwpez
andauthored
Install with --locked (FIX) (#530)
* Install with `--locked` (#521) * Install with --locked * update llms with script Signed-off-by: Oliver Tale-Yazdi <[email protected]> --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> * Fix llms.txt --------- Signed-off-by: Oliver Tale-Yazdi <[email protected]> Co-authored-by: Oliver Tale-Yazdi <[email protected]>
1 parent 9487ff9 commit bc7b3b1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

llms.txt

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

2675226752
```bash
26753-
cargo install staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
26753+
cargo install --locked staging-chain-spec-builder@{{dependencies.crates.chain_spec_builder.version}}
2675426754
```
2675526755

2675626756
This installs the `chain-spec-builder` binary.
@@ -26760,7 +26760,7 @@ This tutorial requires two essential tools:
2676026760
To install it, run the following command:
2676126761

2676226762
```bash
26763-
cargo install polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
26763+
cargo install --locked polkadot-omni-node@{{dependencies.crates.polkadot_omni_node.version}}
2676426764
```
2676526765

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

2678226782
3. Compile the runtime:
2678326783
```bash
26784-
cargo build --release
26784+
cargo build --release --locked
2678526785
```
2678626786

2678726787
!!!tip

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)