install: Fix bin check paths on Linux
This commit is contained in:
@@ -15,7 +15,7 @@ case `uname` in
|
|||||||
mkdir -p ~/.local/share
|
mkdir -p ~/.local/share
|
||||||
mkdir -p ~/.local/bin
|
mkdir -p ~/.local/bin
|
||||||
|
|
||||||
if [[ ! -a ../bin/lua-language-server ]]; then
|
if [[ ! -a ~/.local/bin/lua-language-server ]]; then
|
||||||
echo "Installing Lua Language Server"
|
echo "Installing Lua Language Server"
|
||||||
pushd ~/.local/share
|
pushd ~/.local/share
|
||||||
mkdir -p lua-language-server
|
mkdir -p lua-language-server
|
||||||
@@ -25,7 +25,7 @@ case `uname` in
|
|||||||
popd
|
popd
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ ! -a ../bin/nvim ]]; then
|
if [[ ! -a ~/.local/bin/nvim ]]; then
|
||||||
echo "Installing Installing Neovim"
|
echo "Installing Installing Neovim"
|
||||||
pushd ~/.local/bin
|
pushd ~/.local/bin
|
||||||
curl -LO nvim https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
|
curl -LO nvim https://github.com/neovim/neovim/releases/latest/download/nvim.appimage
|
||||||
|
|||||||
Reference in New Issue
Block a user