[rubygems/rubygems] Update bundler/lib/bundler/settings.rb

https://github.com/rubygems/rubygems/commit/75ffa8ef76

Co-authored-by: Martin Emde <martinemde@users.noreply.github.com>
This commit is contained in:
Josh Nichols 2023-08-29 19:01:32 -04:00 committed by git
parent 6a876a61d7
commit e747e2c36b

View File

@ -104,10 +104,9 @@ module Bundler
value = nil
configs.each do |_, config|
if config[key]
value = config[key]
break
end
value = config[key]
next if value.nil?
break
end
converted_value(value, name)