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: |
|
||||
mkdir -p /bin
|
||||
if [ "$(uname -m)" == "x86_64" ]; then
|
||||
wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
||||
chmod +x /bin/nvim
|
||||
wget -O ~/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
||||
chmod +x ~/nvim
|
||||
else
|
||||
wget -O /bin/nvim https://www.nickr.eu/data/nvim
|
||||
chmod +x /bin/nvim
|
||||
wget -O ~/nvim https://www.nickr.eu/data/nvim
|
||||
chmod +x ~/nvim
|
||||
fi
|
||||
|
||||
- name: Load plugin into neovim
|
||||
|
@ -36,4 +36,4 @@ jobs:
|
|||
|
||||
- name: Run neovim
|
||||
run: |
|
||||
/bin/nvim -es
|
||||
~/nvim -es
|
||||
|
|
Loading…
Reference in New Issue