view Rakefile @ 122:5ec9c636da2a

Revert "Add targets plugin" This reverts commit 70236b32790d77ecc5318acf9a6c493af98faf62.
author zegervdv <zegervdv@me.com>
date Mon, 29 Sep 2014 20:34:31 +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