14 lines
322 B
Plaintext
14 lines
322 B
Plaintext
|
#!/usr/bin/env ruby
|
||
|
require File.join(File.dirname(__FILE__), 'default_libs')
|
||
|
|
||
|
GitStyleBinary.command do
|
||
|
version "yadr-vim-update-plugins 1.0"
|
||
|
|
||
|
short_desc "Update all vim plugins to latest versions from github"
|
||
|
|
||
|
run do |command|
|
||
|
system("cd ~/.dotfiles && git submodule foreach git pull origin master")
|
||
|
end
|
||
|
|
||
|
end
|