diff options
-rwxr-xr-x | ci/install.sh | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ci/install.sh b/ci/install.sh index 21175f63e0..24a4bd7450 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -26,7 +26,11 @@ npm install -g neovim npm link neovim echo "Install tree-sitter npm package" -npm install -g tree-sitter-cli + +# FIXME +# https://github.com/tree-sitter/tree-sitter/commit/e14e285a1087264a8c74a7c62fcaecc49db9d904 +# If queries added to tree-sitter-c, we can use latest tree-sitter-cli +npm install -g tree-sitter-cli@v0.15.9 npm link tree-sitter-cli echo "Install tree-sitter c parser" |