Improve the way submodules are updated [Close #153]

Also updated all plugins to their latest master versions.
This commit is contained in:
Yan Pritzker
2012-10-08 21:38:21 -07:00
parent d49fc4cbe9
commit 1f0693ce1d
21 changed files with 43 additions and 36 deletions

12
bin/yadr/yadr-update-plugins Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env ruby
require File.join(File.dirname(__FILE__), 'default_libs')
GitStyleBinary.command do
version "yadr-update-plugins 1.0"
short_desc "Update all plugins to latest versions from github"
run do |command|
`cd $HOME/.yadr && rake submodules`
end
end