aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/install.sh b/install.sh
index 2eb2a56..bc8a868 100755
--- a/install.sh
+++ b/install.sh
@@ -10,9 +10,10 @@ cd $THIS_DIR
10 10
11# Fetch dependencies (git submodules)... 11# Fetch dependencies (git submodules)...
12awk '/path = (.*)/{PATH=$3;next} /url = /{URL=$3;next} URL{system("git submodule add " URL " " PATH)}' .gitmodules 12awk '/path = (.*)/{PATH=$3;next} /url = /{URL=$3;next} URL{system("git submodule add " URL " " PATH)}' .gitmodules
13git submodule update --init --remote --progress 13git submodule update --init --remote --progress --recursive
14 14
15# compile YouCompleteMe 15# compile YouCompleteMe
16# dependencies: python-certifi
16cd $THIS_DIR/pack/vim/opt/YouCompleteMe 17cd $THIS_DIR/pack/vim/opt/YouCompleteMe
17./install.py --clang-completer 18./install.py --clang-completer
18 19
..