summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneha-p6 <neha.pansare@progress.com>2023-03-21 17:28:27 +0530
committerGitHub <noreply@github.com>2023-03-21 17:28:27 +0530
commit16474d8bf28ef8c18e7f7c3596992f13a9aac636 (patch)
tree859cd4825d88215a22f604e1e2f63eb69129da9a
parent19489d98632c2dc77fafaea54ad4fae57d739da7 (diff)
downloadchef-16474d8bf28ef8c18e7f7c3596992f13a9aac636.tar.gz
We used to pull proxifier from git repo but now it is getting pulled from rubygems itself. But somehow github kitchen test windows boxes still have previously downloaded (they are not cleaned up?) due to which post-bundle-install.rb tries to reinstall the git repo linked proxifier gem resulting in dependency issues between proxifier and proxifier2 (#13644)
Signed-off-by: Neha Pansare <neha.pansare@progress.com>
-rw-r--r--post-bundle-install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/post-bundle-install.rb b/post-bundle-install.rb
index f3b953e7e3..20310a7172 100644
--- a/post-bundle-install.rb
+++ b/post-bundle-install.rb
@@ -18,7 +18,7 @@ Dir["#{gem_home}/bundler/gems/*"].each do |gempath|
next unless gem_name
# FIXME: should omit the gem which is in the current directory and not hard code chef
- next if %w{chef chef-universal-mingw-ucrt}.include?(gem_name)
+ next if %w{chef chef-universal-mingw-ucrt proxifier}.include?(gem_name)
puts "re-installing #{gem_name}..."