view Rakefile @ 197:757b5e22e2ea

Update vim-plug
author zegervdv <zegervdv@me.com>
date Sat, 15 Nov 2014 09:33:03 +0100
parents 17afab9bd228
children
line wrap: on
line source

require 'rake'


desc 'Update plugins'
task :update do
  sh 'git submodule foreach git checkout master'
  sh 'git submodule foreach git pull --rebase'
end

task up: :update