Skip to content
This repository has been archived by the owner on Aug 27, 2024. It is now read-only.

add --locked to cargo install instructions to avoid deps issues #863

Merged
merged 2 commits into from
Feb 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/knowledgebase/integrate/subkey.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ install the dependencies and Subkey, respectively:

```bash
$ curl https://getsubstrate.io -sSf | bash -s -- --fast
$ cargo install --force subkey --git https://github.com/paritytech/substrate --version 2.0.0
$ cargo install --force subkey --git https://github.com/paritytech/substrate --version 2.0.0 --locked
```

### Compiling with Cargo
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/start-a-private-network/keygen.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Subkey is a tool that generates keys specifically designed to be used with Subst
Begin by compiling and installing the utility. This may take up to 15 minutes or so.

```bash
cargo install --force subkey --git https://github.com/paritytech/substrate --version 2.0.0
cargo install --force subkey --git https://github.com/paritytech/substrate --version 2.0.0 --locked
```

We will need to generate at least **2** keys from each type. Every node will need to have its own
Expand Down