docs: fix binary installation instructions

issue #8926 removed uncompressed release artifacts. This updates the documentation to update instructions accordingly.
This commit is contained in:
Christoph Schmatzler 2021-05-24 16:38:33 +02:00
parent 01f8d40c5c
commit 9f8f7a8053

View file

@ -146,7 +146,7 @@ On Linux to install the `rust-analyzer` binary into `~/.local/bin`, this command
[source,bash]
----
$ curl -L https://github.com/rust-analyzer/rust-analyzer/releases/latest/download/rust-analyzer-linux -o ~/.local/bin/rust-analyzer
$ 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
$ chmod +x ~/.local/bin/rust-analyzer
----