diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2021-05-24 15:41:49 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-05-24 15:41:49 +0100 |
commit | 2d532ab150546fede268b732784eda73958c19cf (patch) | |
tree | 1139552b4e8ea129a33c4600583270e199e051b0 | |
parent | 01f8d40c5cb28854091d2081b7aa607ad9902930 (diff) | |
parent | 9f8f7a805316b7d43a623b1cc6df0f15a374a4cb (diff) |
Merge #8968
8968: docs: fix binary installation instructions r=matklad a=cschmatzler
fixes #8966
Co-authored-by: Christoph Schmatzler <[email protected]>
-rw-r--r-- | docs/user/manual.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user/manual.adoc b/docs/user/manual.adoc index ad367511b..4822d7dae 100644 --- a/docs/user/manual.adoc +++ b/docs/user/manual.adoc | |||
@@ -146,7 +146,7 @@ On Linux to install the `rust-analyzer` binary into `~/.local/bin`, this command | |||
146 | 146 | ||
147 | [source,bash] | 147 | [source,bash] |
148 | ---- | 148 | ---- |
149 | $ curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-linux -o ~/.local/bin/rust-analyzer | 149 | $ curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-x86_64-unknown-linux-gnu.gz | gunzip -c - > ~/.local/bin/rust-analyzer |
150 | $ chmod +x ~/.local/bin/rust-analyzer | 150 | $ chmod +x ~/.local/bin/rust-analyzer |
151 | ---- | 151 | ---- |
152 | 152 | ||