aboutsummaryrefslogtreecommitdiffstats
path: root/lua
diff options
context:
space:
mode:
authorStephan Seitz <stephan.seitz@fau.de>2021-03-07 19:16:49 +0100
committerKiyan <yazdani.kiyan@protonmail.com>2021-03-16 18:52:43 +0100
commit4af5fef1d9d3b5f4121113f8230afd9d3b95a161 (patch)
treef426d00e32b4bceda4c0f0024a2de9cbeac0f52d /lua
parentMark several invalid queries (diff)
downloadnvim-treesitter-4af5fef1d9d3b5f4121113f8230afd9d3b95a161.tar
nvim-treesitter-4af5fef1d9d3b5f4121113f8230afd9d3b95a161.tar.gz
nvim-treesitter-4af5fef1d9d3b5f4121113f8230afd9d3b95a161.tar.bz2
nvim-treesitter-4af5fef1d9d3b5f4121113f8230afd9d3b95a161.tar.lz
nvim-treesitter-4af5fef1d9d3b5f4121113f8230afd9d3b95a161.tar.xz
nvim-treesitter-4af5fef1d9d3b5f4121113f8230afd9d3b95a161.tar.zst
nvim-treesitter-4af5fef1d9d3b5f4121113f8230afd9d3b95a161.zip
Fixup CI
Diffstat (limited to 'lua')
-rw-r--r--lua/nvim-treesitter/install.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/nvim-treesitter/install.lua b/lua/nvim-treesitter/install.lua
index fbc264c0f..74f100263 100644
--- a/lua/nvim-treesitter/install.lua
+++ b/lua/nvim-treesitter/install.lua
@@ -153,7 +153,7 @@ local function run_install(cache_folder, install_folder, lang, repo, with_sync,
end
local parser_lib_name = install_folder..path_sep..lang..".so"
- if repo.requires_generate_from_grammar ~= 1 and vim.env.CI then
+ if repo.requires_generate_from_grammar and vim.env.CI then
print("Skipping language "..lang.." on CI (requires npm)!")
return
end