Removed && in zls install

removed && in favor of scripts on separate lines
This commit is contained in:
Just Midi 2021-08-27 06:18:00 +00:00
parent 4ca63a5884
commit 6179a86a75
1 changed files with 3 additions and 1 deletions

View File

@ -4,5 +4,7 @@ source scripts/query_dependencies.sh
query_dep "xz or xz-utils"
if response == 'y' then
mkdir -p builds/zls && cd builds/zls && curl -L https://github.com/zigtools/zls/releases/download/0.1.0/x86_64-linux.tar.xz | tar -xJ --strip-components=1 -C .
mkdir -p builds/zls
cd builds/zls
curl -L https://github.com/zigtools/zls/releases/download/0.1.0/x86_64-linux.tar.xz | tar -xJ --strip-components=1 -C .
fi