Creating bin in case of error, calling it directly
Some checks failed
Try loading the plugin into nvim / build (ubuntu-22.04) (push) Failing after 53s
Some checks failed
Try loading the plugin into nvim / build (ubuntu-22.04) (push) Failing after 53s
This commit is contained in:
@@ -20,12 +20,13 @@ jobs:
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
mkdir -p /bin
|
||||
if [ "$(uname -m)" == "x86_64" ]; then
|
||||
wget -O /usr/bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
||||
chmod +x /usr/bin/nvim
|
||||
wget -O /bin/nvim https://github.com/neovim/neovim/releases/download/nightly/nvim.appimage
|
||||
chmod +x /bin/nvim
|
||||
else
|
||||
wget -O /usr/bin/nvim https://www.nickr.eu/data/nvim
|
||||
chmod +x /usr/bin/nvim
|
||||
wget -O /bin/nvim https://www.nickr.eu/data/nvim
|
||||
chmod +x /bin/nvim
|
||||
fi
|
||||
|
||||
- name: Load plugin into neovim
|
||||
@@ -35,5 +36,4 @@ jobs:
|
||||
|
||||
- name: Run neovim
|
||||
run: |
|
||||
ls /
|
||||
nvim -es
|
||||
/bin/nvim -es
|
||||
|
||||
Reference in New Issue
Block a user