diff options
author | AJ Christensen <aj@junglist.gen.nz> | 2009-04-14 21:21:51 +1200 |
---|---|---|
committer | AJ Christensen <aj@junglist.gen.nz> | 2009-04-14 21:21:51 +1200 |
commit | a68b6e3dbbe9e0afa41b5b19e4e35d2aa75f0f4a (patch) | |
tree | 8dfd06f6aa5bdf8863d456150d973cd71d0c9197 /Rakefile | |
parent | 4c9b8722aff436f31c1a07c52fbca8da889b8083 (diff) | |
download | chef-a68b6e3dbbe9e0afa41b5b19e4e35d2aa75f0f4a.tar.gz |
Forgot to update the required tasks
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,14 +10,14 @@ namespace :git do end desc "Build the chef gems" -task :gem => "git:update_and_init" do +task :gem => "git:submodule_update" do gems.each do |dir| Dir.chdir(dir) { sh "rake package" } end end desc "Install the chef gems" -task :install => "git:update_and_init" do +task :install => "git:submodule_update" do gems.each do |dir| Dir.chdir(dir) { sh "rake install" } end |