summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index d9bad16e15..ddd4227462 100644
--- a/Rakefile
+++ b/Rakefile
@@ -4,8 +4,10 @@ require 'cucumber/rake/task'
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 "rake package" }
+ Dir.chdir(dir) { sh build_commands[dir] }
end
end