summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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