view Rakefile @ 158:7b712c989aad

Revert "Add k plugin" This reverts commit c0c0db480ba70ef1f412c3ff9a22597ee45d6e62.
author zegervdv <zegervdv@me.com>
date Thu, 23 Oct 2014 20:37:02 +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