Update the command of installing binaries to install v0.10.0.

This commit is contained in:
kama-meshi 2022-11-12 23:48:50 +09:00
parent e58bddd769
commit 415243472b
No known key found for this signature in database
GPG Key ID: C2F1C1B26CD0B3BD

View File

@ -52,8 +52,8 @@ See [Downloading and Building ZLS](https://github.com/zigtools/zls/wiki/Download
You can install the latest release into `$HOME/zls` using e.g.:
```sh
brew install xz
mkdir $HOME/zls && cd $HOME/zls && curl -L https://github.com/zigtools/zls/releases/download/0.9.0/x86_64-macos.tar.xz | tar -xJ --strip-components=1 -C . && chmod +x zls
brew install zstd
mkdir $HOME/zls && cd $HOME/zls && curl -L https://github.com/zigtools/zls/releases/download/0.10.0/x86_64-macos.tar.zst | tar --use-compress-program unzstd -x --strip-components=1 -C . && chmod +x zls
```
#### Linux
@ -61,8 +61,8 @@ mkdir $HOME/zls && cd $HOME/zls && curl -L https://github.com/zigtools/zls/relea
You can install the latest release into `$HOME/zls` using e.g.:
```bash
sudo apt install xz-utils
mkdir $HOME/zls && cd $HOME/zls && curl -L https://github.com/zigtools/zls/releases/download/0.9.0/x86_64-linux.tar.xz | tar -xJ --strip-components=1 -C .
sudo apt install zstd
mkdir $HOME/zls && cd $HOME/zls && curl -L https://github.com/zigtools/zls/releases/download/0.10.0/x86_64-linux.tar.zst | tar --use-compress-program unzstd -x --strip-components=1 -C .
```
### From Source