add customized llm-ls binary installation steps to install-deps.sh
This commit is contained in:
parent
e1a2c551ed
commit
6e127fb0ee
|
@ -16,3 +16,10 @@ else
|
||||||
rustup component add rust-src rust-analyzer
|
rustup component add rust-src rust-analyzer
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ ! -f "${HOME}/.cargo/bin/llm-ls" ]; then
|
||||||
|
echo "Downloading llm-ls binary"
|
||||||
|
mkdir -p "${HOME}/.cargo/bin"
|
||||||
|
curl -o "${HOME}/.cargo/bin/llm-ls" "https://blarg.ca/files/llm-ls/20241110/llm-ls"
|
||||||
|
else
|
||||||
|
echo "llm-ls binary already installed"
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue