aboutsummaryrefslogtreecommitdiff
path: root/ci/install.sh
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-10-07 13:34:23 +0200
committerGitHub <noreply@github.com>2019-10-07 13:34:23 +0200
commitdfed0e60d7e3af9a89f0e945227b9ed2e599aee4 (patch)
tree306a5b5c8c486ad67562be004d51aaab8eb5dbb9 /ci/install.sh
parent6ea49d8c76388010ab066f53544074347c4dce01 (diff)
parente9b420dba5119536558f659d598546176d77070e (diff)
downloadrneovim-dfed0e60d7e3af9a89f0e945227b9ed2e599aee4.tar.gz
rneovim-dfed0e60d7e3af9a89f0e945227b9ed2e599aee4.tar.bz2
rneovim-dfed0e60d7e3af9a89f0e945227b9ed2e599aee4.zip
Merge pull request #11154 from blueyed/bump-tree-sitter
ci: upgrade tree-sitter from 0.15.2 to 0.15.9
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-xci/install.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/install.sh b/ci/install.sh
index b96cf3c073..21175f63e0 100755
--- a/ci/install.sh
+++ b/ci/install.sh
@@ -34,7 +34,7 @@ curl "https://codeload.github.com/tree-sitter/tree-sitter-c/tar.gz/v0.15.2" -o t
tar xf tree_sitter_c.tar.gz
cd tree-sitter-c-0.15.2
export TREE_SITTER_DIR=$HOME/tree-sitter-build/
-mkdir -p $TREE_SITTER_DIR/bin
+mkdir -p "$TREE_SITTER_DIR/bin"
if [[ "$BUILD_32BIT" != "ON" ]]; then
# builds c parser in $HOME/tree-sitter-build/bin/c.(so|dylib)
@@ -42,5 +42,5 @@ if [[ "$BUILD_32BIT" != "ON" ]]; then
else
# no tree-sitter binary for 32bit linux, so fake it (no tree-sitter unit tests)
cd src/
- gcc -m32 -o $TREE_SITTER_DIR/bin/c.so -shared parser.c -I.
+ gcc -m32 -o "$TREE_SITTER_DIR/bin/c.so" -shared parser.c -I.
fi