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

Commit

Permalink
add --locked to cargo install instructions to avoid deps issues (#863)
Browse files Browse the repository at this point in the history
* add --locked to cargo install instructions to avoid deps issues

* move back to 2.0.0 version
  • Loading branch information
apopiak authored Feb 17, 2021
1 parent 7230183 commit 646c789
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit 646c789

Please sign in to comment.