summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2021-03-22 18:29:49 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2021-03-22 18:29:49 -0700
commit9d51267e7318a45a08d887881fc7bb376df375d7 (patch)
tree85bf68e7965ec4c0fc87b8e2db42fe87cfc88b32
parentfe85775fb07e687e715c81e50316d2d357dd8ecd (diff)
downloadchef-9d51267e7318a45a08d887881fc7bb376df375d7.tar.gz
old bundler needs old API
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
-rwxr-xr-xtasks/bin/run_external_test2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/bin/run_external_test b/tasks/bin/run_external_test
index bb84fc255d..95466bca6b 100755
--- a/tasks/bin/run_external_test
+++ b/tasks/bin/run_external_test
@@ -31,7 +31,7 @@ Dir.mktmpdir("chef-external-test") do |dir|
shell_out!("git clone #{git_url} #{dir}", live_stream: STDOUT)
Dir.chdir(dir) do
shell_out!("git checkout #{git_thing}", live_stream: STDOUT)
- Bundler.with_unbundled_env do
+ Bundler.with_clean_env do
shell_out!("bundle install --jobs=3 --retry=3", live_stream: STDOUT, env: env, timeout: 3600)
shell_out!("bundle exec #{ARGV.join(" ")}", live_stream: STDOUT, env: env)
end