From 35442005132e60a728b59f0811da10fba95a851e Mon Sep 17 00:00:00 2001 From: Josh Nichols Date: Sat, 19 Aug 2023 12:33:44 -0400 Subject: [PATCH] [rubygems/rubygems] fix lint https://github.com/rubygems/rubygems/commit/75c0f27b7e --- lib/bundler/settings.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bundler/settings.rb b/lib/bundler/settings.rb index fe62c85f58..f5999481a8 100644 --- a/lib/bundler/settings.rb +++ b/lib/bundler/settings.rb @@ -92,7 +92,7 @@ module Bundler @local_config = load_config(local_config_file) @env_config = ENV.to_h - @env_config.select! {|key, _value| key.start_with?("BUNDLE_")} + @env_config.select! {|key, _value| key.start_with?("BUNDLE_") } @env_config.delete("BUNDLE_") @global_config = load_config(global_config_file)