[rubygems/rubygems] Have "gem update --system" pass through the --silent flag.

https://github.com/rubygems/rubygems/commit/5a1e56e892
This commit is contained in:
Ellen Marie Dash 2020-07-04 19:19:27 -04:00 committed by Hiroshi SHIBATA
parent ab5e9516b7
commit 7fc8f83edb
Notes: git 2020-09-28 14:54:55 +09:00

View File

@ -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]