view Rakefile @ 145:b3fd48f2df2c

Move brew related paths and aliases to local rc
author zegervdv <zegervdv@me.com>
date Tue, 14 Oct 2014 18:33:03 +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