diff options
author | John Keiser <john@johnkeiser.com> | 2016-06-17 17:01:50 -0700 |
---|---|---|
committer | John Keiser <john@johnkeiser.com> | 2016-06-17 17:01:50 -0700 |
commit | dbbad3f639afdf94fe542c77de6e42d3a97a4444 (patch) | |
tree | bd84e4a7bfc8e10d241e1a9df2768dd2accab29a /Rakefile | |
parent | bab900b86a66edefcce9c84fffd868994468e5cf (diff) | |
download | chef-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-- | Rakefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |