From 415243472b55d6fdbb9fe4ac464fe9f749670b4b Mon Sep 17 00:00:00 2001 From: kama-meshi Date: Sat, 12 Nov 2022 23:48:50 +0900 Subject: [PATCH] Update the command of installing binaries to install v0.10.0. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 580ecbd..fbe4a6a 100644 --- a/README.md +++ b/README.md @@ -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