diff options
author | John McCrae <john.mccrae@progress.com> | 2022-06-29 07:18:28 -0700 |
---|---|---|
committer | Thomas Powell <powell@progress.com> | 2022-08-23 11:08:51 -0400 |
commit | 2f5dbd1ee69c970fc06870477dbbca6c5c3555c4 (patch) | |
tree | de0dcdb7b443306b000d71f70d54bb08ff2d2e6f /post-bundle-install.rb | |
parent | 964236952f9fad2398a6a3a2501774e430b17b6d (diff) | |
download | chef-2f5dbd1ee69c970fc06870477dbbca6c5c3555c4.tar.gz |
Integrate ruby 3.1 into builds
This is a combination of 64 commits, the originals were mostly
repeating one-line messages so that history has not been kept here.
Signed-off-by: Thomas Powell <thomas.powell@progress.com>
Signed-off-by: Marc Paradise <marc@chef.io>
Signed-off-by: John McCrae <john.mccrae@progress.com>
Diffstat (limited to 'post-bundle-install.rb')
-rw-r--r-- | post-bundle-install.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post-bundle-install.rb b/post-bundle-install.rb index 86a530bffd..f3b953e7e3 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-mingw32}.include?(gem_name) + next if %w{chef chef-universal-mingw-ucrt}.include?(gem_name) puts "re-installing #{gem_name}..." |