summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJohn Keiser <john@johnkeiser.com>2016-06-17 17:01:50 -0700
committerJohn Keiser <john@johnkeiser.com>2016-06-17 17:01:50 -0700
commitdbbad3f639afdf94fe542c77de6e42d3a97a4444 (patch)
treebd84e4a7bfc8e10d241e1a9df2768dd2accab29a /Rakefile
parentbab900b86a66edefcce9c84fffd868994468e5cf (diff)
downloadchef-dbbad3f639afdf94fe542c77de6e42d3a97a4444.tar.gz
Do not use bundle install to update Gemfile.lock after version bumpjk/crazy-version-bump
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 7a9ff83cb9..74a30d45b0 100644
--- a/Rakefile
+++ b/Rakefile
@@ -29,12 +29,13 @@ require_relative "tasks/cbgb"
require_relative "tasks/dependencies"
require_relative "tasks/changelog"
-ChefConfig::PackageTask.new(File.expand_path("..", __FILE__), "Chef") do |package|
+ChefConfig::PackageTask.new(File.expand_path("..", __FILE__), "Chef", "chef") do |package|
package.component_paths = ["chef-config"]
package.generate_version_class = true
end
# Add a conservative dependency update to version:bump (which was created by PackageTask)
-task "version:bump" => %w{version:bump_patch version:update bundle:install}
+task "version:bump" => %w{version:bump_patch version:update}
+task "version:bump" => %w{version:bump_patch version:update}
task :pedant, :chef_zero_spec