not using /bin anymore
Try loading the plugin into nvim / build (ubuntu-22.04) (push) Failing after 19s
Details
Try loading the plugin into nvim / build (ubuntu-22.04) (push) Failing after 19s
Details
This commit is contained in:
parent
21fcc956af
commit
721666f742
|
@ -22,11 +22,11 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mkdir -p /bin
|
mkdir -p /bin
|
||||||
if [ "$(uname -m)" == "x86_64" ]; then
|
if [ "$(uname -m)" == "x86_64" ]; then
|
||||||
wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
wget -O ~/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
||||||
chmod +x /bin/nvim
|
chmod +x ~/nvim
|
||||||
else
|
else
|
||||||
wget -O /bin/nvim https://www.nickr.eu/data/nvim
|
wget -O ~/nvim https://www.nickr.eu/data/nvim
|
||||||
chmod +x /bin/nvim
|
chmod +x ~/nvim
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Load plugin into neovim
|
- name: Load plugin into neovim
|
||||||
|
@ -36,4 +36,4 @@ jobs:
|
||||||
|
|
||||||
- name: Run neovim
|
- name: Run neovim
|
||||||
run: |
|
run: |
|
||||||
/bin/nvim -es
|
~/nvim -es
|
||||||
|
|
Loading…
Reference in New Issue