summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-10-26 20:35:59 -0700
committerGitHub <noreply@github.com>2018-10-26 20:35:59 -0700
commit8c7379b129555175b1fc3c58786bc3b30b572e2f (patch)
treec901a864109fe6046a1ca35ccc21886cf749d403
parent62e354ff5c06f9207c5988ef4baccfd3478552ce (diff)
parentab4682a0b4b0bab39039c69161fa868b970802e0 (diff)
downloadchef-8c7379b129555175b1fc3c58786bc3b30b572e2f.tar.gz
Merge pull request #7796 from chef/lcg/fix-external-tests
add GEMFILE_MOD to pin ohai to github master
-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 01eba18943..5f1ac8f210 100755
--- a/tasks/bin/run_external_test
+++ b/tasks/bin/run_external_test
@@ -13,7 +13,7 @@ git_thing = ARGV.shift
build_dir = File.expand_path(ENV["TRAVIS_BUILD_DIR"] || Dir.pwd)
-env = { "GEMFILE_MOD" => "gem 'chef', path: '#{build_dir}'" }
+env = { "GEMFILE_MOD" => "gem 'chef', path: '#{build_dir}'; gem 'ohai', git: 'https://github.com/chef/ohai.git', branch: 'master'" }
Dir.mktmpdir("chef-external-test") do |dir|
git_url = "https://github.com/#{github_repo}"