diff options
author | Daniel Hahler <git@thequod.de> | 2019-10-04 16:26:26 +0200 |
---|---|---|
committer | Daniel Hahler <git@thequod.de> | 2019-10-06 22:55:24 +0200 |
commit | e9b420dba5119536558f659d598546176d77070e (patch) | |
tree | 9a65160ac3ad14fae08bbbb7f69f102115cc20e7 /ci/install.sh | |
parent | 7a3602378fafc426dcefc3b94f75467d4df12d24 (diff) | |
download | rneovim-e9b420dba5119536558f659d598546176d77070e.tar.gz rneovim-e9b420dba5119536558f659d598546176d77070e.tar.bz2 rneovim-e9b420dba5119536558f659d598546176d77070e.zip |
lint
Diffstat (limited to 'ci/install.sh')
-rwxr-xr-x | ci/install.sh | 4 |
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 |