diff options
author | Daniel DeLeo <dan@opscode.com> | 2010-06-04 16:42:58 -0700 |
---|---|---|
committer | Daniel DeLeo <dan@opscode.com> | 2010-06-04 16:42:58 -0700 |
commit | 5520eda3873c82bccd738cb974959c0336bf5cc6 (patch) | |
tree | a55b66b24438184dce3f967afb44cab668e96162 /Rakefile | |
parent | b13bc1b5dbf66bface4b2fd21b31da5d1b612fcd (diff) | |
download | chef-5520eda3873c82bccd738cb974959c0336bf5cc6.tar.gz |
webui gem builds w/ rake gem now
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -22,10 +22,8 @@ require 'rubygems' desc "Build the chef gems" task :gem do - build_commands = Hash.new("rake package") - build_commands['chef-solr'] = 'rake build' gems.each do |dir| - Dir.chdir(dir) { sh build_commands[dir] } + Dir.chdir(dir) { sh "rake gem" } end end |