summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Rakefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Rakefile b/Rakefile
index b55ed8321b..52f976927b 100644
--- a/Rakefile
+++ b/Rakefile
@@ -35,6 +35,13 @@ task :install => :package do
sh %{gem install pkg/#{GEM_NAME}-#{Chef::VERSION}.gem --no-rdoc --no-ri}
end
+# In Chef 12.4, some parts of Chef Client are moved to subprojects in the same
+# git repo. Omnibus calls `rake install_components` to build these. This rake
+# task makes 11-stable forward compatible.
+task :install_components do
+ true
+end
+
task :uninstall do
sh %{gem uninstall #{GEM_NAME} -x -v #{Chef::VERSION} }
end