diff options
author | Hirokazu Hata <h.hata.ai.t@gmail.com> | 2019-10-21 14:53:00 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2019-10-20 22:53:00 -0700 |
commit | 02393a0c74d3aaeece939bafa4f658763acca965 (patch) | |
tree | 3b518bba9f04a38ce83b6552ce0c30ba06da355f | |
parent | 2e4465e0585053bddaf8e6e60dc50bf1be0ba54e (diff) | |
download | rneovim-02393a0c74d3aaeece939bafa4f658763acca965.tar.gz rneovim-02393a0c74d3aaeece939bafa4f658763acca965.tar.bz2 rneovim-02393a0c74d3aaeece939bafa4f658763acca965.zip |
ci/install.sh: pin treesitter to v0.15.9 #11266
When "tree-sitter test" is executed, query test is also executed, but "tree-sitter-c" does not have query test yet, so cli version that does not include query test execution To use.
ref https://github.com/tree-sitter/tree-sitter/commit/e14e285a1087264a8c74a7c62fcaecc49db9d904
-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" |