view Rakefile @ 42:4c3b25554bbb

Enable smart folding
author zegervdv <zegervdv@me.com>
date Mon, 21 Apr 2014 11:36:34 +0200
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