Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Polkadot git paths after monorepo merge #5202

Merged
merged 1 commit into from
Sep 19, 2023
Merged
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
16 changes: 8 additions & 8 deletions docs/maintain/maintain-guides-how-to-validate-polkadot.md
Original file line number Diff line number Diff line change
Expand Up @@ -334,26 +334,26 @@ brew install cmake pkg-config openssl git llvm
#### Building the binaries

You can build the Polkadot binaries from the
[paritytech/polkadot](https://github.com/paritytech/polkadot) repository on GitHub.
[paritytech/polkadot-sdk](https://github.com/paritytech/polkadot-sdk) repository on GitHub.

You should generally use the latest **X.Y.Z** tag. You should either review the output from the "git
tag" command or view the [Polkadot Github tags](https://github.com/paritytech/polkadot/tags) to see
a list of all the available release versions. You should replace `VERSION` below with the latest
build (i.e., the highest number).
tag" command or view the [Polkadot SDK Github tags](https://github.com/paritytech/polkadot-sdk/tags)
to see a list of all the available release versions. You should replace `VERSION` below with the
latest build (i.e., the highest number).

:::note

If you prefer to use SSH rather than HTTPS, you can replace the first line of the below with

```sh
git clone [email protected]:paritytech/polkadot.git
git clone [email protected]:paritytech/polkadot-sdk.git
```

:::

```sh
git clone https://github.com/paritytech/polkadot.git
cd polkadot
git clone https://github.com/paritytech/polkadot-sdk.git
cd polkadot-sdk/polkadot
```

Run the following command to find the latest version.
Expand Down Expand Up @@ -405,7 +405,7 @@ directory. You may then take the generated `subkey` executable and transfer it t
machine for extra security.

```sh
cargo install --force --git https://github.com/paritytech/substrate subkey
cargo install --force --git https://github.com/paritytech/polkadot-sdk subkey
```

### Verify the installation
Expand Down
Loading