diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-10-25 22:26:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-25 22:26:15 -0700 |
commit | 91b831da8b00319afba6a90b439d70960f90c3f7 (patch) | |
tree | d1b1803fc0d8c963043b22dd841c68074b243ac3 /ci/install.sh | |
parent | 0b771cd9aabfdee3ddc14c08af076f5df5cd0150 (diff) | |
parent | ec205f4b9b926a17b3211495ec6468db8b80aa6a (diff) | |
download | rneovim-91b831da8b00319afba6a90b439d70960f90c3f7.tar.gz rneovim-91b831da8b00319afba6a90b439d70960f90c3f7.tar.bz2 rneovim-91b831da8b00319afba6a90b439d70960f90c3f7.zip |
Merge #11275 from janlazo/ci/nodejs
ci/nodejs: use node v10, prefer shell builtins in ci scripts
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/install.sh b/ci/install.sh index 24a4bd7450..4a48a4f5d7 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -31,7 +31,6 @@ echo "Install tree-sitter npm package" # 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" curl "https://codeload.github.com/tree-sitter/tree-sitter-c/tar.gz/v0.15.2" -o tree_sitter_c.tar.gz @@ -48,3 +47,4 @@ else cd src/ gcc -m32 -o "$TREE_SITTER_DIR/bin/c.so" -shared parser.c -I. fi +test -f "$TREE_SITTER_DIR/bin/c.so" |