From 721666f742351858482f9843daa0f88dd1c5f7c2 Mon Sep 17 00:00:00 2001 From: yannickreiss Date: Wed, 18 Dec 2024 11:07:29 +0100 Subject: [PATCH] not using /bin anymore --- .gitea/workflows/test.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index c6b1bab..149498d 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -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