Trying to find out what is going wrong with bin in ubuntu22.04
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
db8258bc39
commit
60f052dcc3
|
@ -21,11 +21,11 @@ jobs:
|
|||
- name: Install dependencies
|
||||
run: |
|
||||
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 /usr/bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
||||
chmod +x /usr/bin/nvim
|
||||
else
|
||||
wget -O /bin/nvim https://www.nickr.eu/data/nvim
|
||||
chmod +x /bin/nvim
|
||||
wget -O /usr/bin/nvim https://www.nickr.eu/data/nvim
|
||||
chmod +x /usr/bin/nvim
|
||||
fi
|
||||
|
||||
- name: Load plugin into neovim
|
||||
|
@ -35,5 +35,5 @@ jobs:
|
|||
|
||||
- name: Run neovim
|
||||
run: |
|
||||
ls bin
|
||||
ls /
|
||||
nvim -es
|
||||
|
|
Loading…
Reference in New Issue