From a9a341872697df81a023d7d745ba43bb32478a47 Mon Sep 17 00:00:00 2001 From: Stephan Seitz Date: Mon, 15 Mar 2021 21:12:51 +0100 Subject: [PATCH] Fix CI (not use appimage on Mac) --- .github/workflows/check-query-files-and-compilation.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-query-files-and-compilation.yml b/.github/workflows/check-query-files-and-compilation.yml index 301a327e0..c771ae877 100644 --- a/.github/workflows/check-query-files-and-compilation.yml +++ b/.github/workflows/check-query-files-and-compilation.yml @@ -39,7 +39,7 @@ jobs: - name: Check query files (Unix) if: matrix.os != 'windows-latest' - run: ./nvim.appimage --headless -c "luafile ./scripts/check-queries.lua" -c "q" + run: nvim --headless -c "luafile ./scripts/check-queries.lua" -c "q" - name: Compile parsers Windows if: matrix.os == 'windows-latest'