diff options
author | David RodrÃguez <[email protected]> | 2023-12-26 20:21:26 +0100 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2024-01-11 13:51:52 +0900 |
commit | 0156b7416cf05880460ec6a3c2cc7b7c2ea863db (patch) | |
tree | 0f82187516fd8c1484cad463a335b3093944e9a7 /lib/rubygems/commands/update_command.rb | |
parent | 3980cebda5438b3f7803015f37c25d94c0573b5f (diff) |
[rubygems/rubygems] Always avoid "Updating rubygems-update" message
The fact that under the hood the upgrade is done through a
rubygems-update gem is an implementation detail that does not really
help users to know.
Plus, it reads a bit weird.
https://github.com/rubygems/rubygems/commit/0fa5c50258
Diffstat (limited to 'lib/rubygems/commands/update_command.rb')
-rw-r--r-- | lib/rubygems/commands/update_command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rubygems/commands/update_command.rb b/lib/rubygems/commands/update_command.rb index 144f67acc5..3d6fecaa40 100644 --- a/lib/rubygems/commands/update_command.rb +++ b/lib/rubygems/commands/update_command.rb @@ -244,7 +244,7 @@ command to remove old versions. @installer = Gem::DependencyInstaller.new update_options - say "Updating #{name}" unless options[:system] && options[:silent] + say "Updating #{name}" unless options[:system] begin @installer.install name, Gem::Requirement.new(version) rescue Gem::InstallError, Gem::DependencyError => e |