diff options
author | Tim Smith <tsmith@chef.io> | 2018-07-23 16:41:33 -0700 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-07-23 16:41:33 -0700 |
commit | 717d599a779974dc74b0e971d01bd26292a66433 (patch) | |
tree | 861067d50cc5201ea8f503dd9e2ef9885197edd4 | |
parent | 0584508ea354dade2d3df419d98b5171ff82fb2e (diff) | |
download | chef-717d599a779974dc74b0e971d01bd26292a66433.tar.gz |
Remove task to bump audit cookbook deps
This cookbook is gone and this causes this job to fail
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r-- | tasks/dependencies.rb | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/tasks/dependencies.rb b/tasks/dependencies.rb index 562ec50b81..4ffb38cbef 100644 --- a/tasks/dependencies.rb +++ b/tasks/dependencies.rb @@ -40,7 +40,6 @@ namespace :dependencies do task update_ci: %w{ dependencies:update_gemfile_lock dependencies:update_omnibus_gemfile_lock - dependencies:update_audit_tests_berksfile_lock } def bundle_update_locked_multiplatform_task(task_name, dir) @@ -68,21 +67,8 @@ namespace :dependencies do end end - def berks_update_task(task_name, dir) - desc "Update #{dir}/Berksfile.lock." - task task_name do - FileUtils.rm_f("#{dir}/Berksfile.lock") - Dir.chdir(dir) do - Bundler.with_clean_env do - sh "bundle exec berks install" - end - end - end - end - bundle_update_locked_multiplatform_task :update_gemfile_lock, "." bundle_update_locked_multiplatform_task :update_omnibus_gemfile_lock, "omnibus" - berks_update_task :update_audit_tests_berksfile_lock, "kitchen-tests/cookbooks/audit_test" end |