Merge pull request #748 from kama-meshi/bump-cmd-installing-binaries

Update the command of installing binaries to install v0.10.0.
This commit is contained in:
Lee Cannon 2022-11-12 15:10:10 +00:00 committed by GitHub
commit 28adef42c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.: You can install the latest release into `$HOME/zls` using e.g.:
```sh ```sh
brew install xz brew install zstd
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 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 #### 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.: You can install the latest release into `$HOME/zls` using e.g.:
```bash ```bash
sudo apt install xz-utils sudo apt install zstd
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 . 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 ### From Source