From 7fc8f83edbfe0bb220750e179b70e1bff57f1e5f Mon Sep 17 00:00:00 2001 From: Ellen Marie Dash Date: Sat, 4 Jul 2020 19:19:27 -0400 Subject: [PATCH] [rubygems/rubygems] Have "gem update --system" pass through the --silent flag. https://github.com/rubygems/rubygems/commit/5a1e56e892 --- lib/rubygems/commands/update_command.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rubygems/commands/update_command.rb b/lib/rubygems/commands/update_command.rb index 64e0b4a7a0..2df6a48d2d 100644 --- a/lib/rubygems/commands/update_command.rb +++ b/lib/rubygems/commands/update_command.rb @@ -291,6 +291,7 @@ command to remove old versions. def update_rubygems_arguments # :nodoc: args = [] + args << '--silent' if options[:silent] args << '--prefix' << Gem.prefix if Gem.prefix args << '--no-document' unless options[:document].include?('rdoc') || options[:document].include?('ri') args << '--no-format-executable' if options[:no_format_executable]