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