diff options
author | Christoph Schmatzler <[email protected]> | 2021-05-24 15:38:33 +0100 |
---|---|---|
committer | Christoph Schmatzler <[email protected]> | 2021-05-24 15:38:33 +0100 |
commit | 9f8f7a805316b7d43a623b1cc6df0f15a374a4cb (patch) | |
tree | 1139552b4e8ea129a33c4600583270e199e051b0 /docs/user | |
parent | 01f8d40c5cb28854091d2081b7aa607ad9902930 (diff) |
docs: fix binary installation instructions
issue #8926 removed uncompressed release artifacts. This updates the documentation to update instructions accordingly.
Diffstat (limited to 'docs/user')
-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 | ||