summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorDaniel DeLeo <dan@opscode.com>2010-06-04 16:42:58 -0700
committerDaniel DeLeo <dan@opscode.com>2010-06-04 16:42:58 -0700
commit5520eda3873c82bccd738cb974959c0336bf5cc6 (patch)
treea55b66b24438184dce3f967afb44cab668e96162 /Rakefile
parentb13bc1b5dbf66bface4b2fd21b31da5d1b612fcd (diff)
downloadchef-5520eda3873c82bccd738cb974959c0336bf5cc6.tar.gz
webui gem builds w/ rake gem now
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index 2e72e95564..0a83a35812 100644
--- a/Rakefile
+++ b/Rakefile
@@ -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