Skip to content

Commit c5f764d

Browse files
committed
download test dependency if needed
1 parent 6931780 commit c5f764d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

tests/run.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
#!/bin/sh
22
: "${VIM_EXE:=vim}"
33

4+
# download test dependency if needed
5+
if [[ ! -d "./vader.vim" ]]; then
6+
git clone https://github.com/junegunn/vader.vim.git vader.vim
7+
fi
8+
49
# If nvim is available in PATH, then we prefer to use nvim
510
# since it works better with nodemon
611
if hash nvim 2>/dev/null ; then

0 commit comments

Comments
 (0)