Преглед изворни кода

Merge pull request #286 from zackhsi/master

Update YouCompleteMe install script
Jeremy Pallats/starcraft.man пре 10 година
родитељ
комит
a93bdfc175
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      README.md

+ 2 - 2
README.md

@@ -163,7 +163,7 @@ In that case, use `do` option to describe the task to be performed.
 
 ```vim
 Plug 'Shougo/vimproc.vim', { 'do': 'make' }
-Plug 'Valloric/YouCompleteMe', { 'do': './install.sh' }
+Plug 'Valloric/YouCompleteMe', { 'do': './install.py' }
 ```
 
 If you need more control, you can pass a reference to a Vim function that
@@ -176,7 +176,7 @@ function! BuildYCM(info)
   " - status: 'installed', 'updated', or 'unchanged'
   " - force:  set on PlugInstall! or PlugUpdate!
   if a:info.status == 'installed' || a:info.force
-    !./install.sh
+    !./install.py
   endif
 endfunction