diff options
author | Ellen Marie Dash <[email protected]> | 2023-09-30 19:13:48 -0400 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-10-16 13:51:07 +0900 |
commit | 3f5da31760476cf8a0340f03125c4b97c3cdbc97 (patch) | |
tree | add093614ca9d2ae18f73a24612f37dce8ccd1f0 | |
parent | cbf2e133c10b87bb7d1f858471e600af6c6e62d1 (diff) |
[rubygems/rubygems] Rephrase "Defaulting to user installation" message.
https://github.com/rubygems/rubygems/commit/b7c531347e
Co-authored-by: David RodrÃguez <[email protected]>
-rw-r--r-- | lib/rubygems/command.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rubygems/command.rb b/lib/rubygems/command.rb index 27aaf68db0..01deac6890 100644 --- a/lib/rubygems/command.rb +++ b/lib/rubygems/command.rb @@ -324,7 +324,7 @@ class Gem::Command @when_invoked.call options else if Gem.paths.auto_user_install && !options[:install_dir] && !options[:user_install] - self.ui.say "Defaulting to user installation because default GEM_HOME (#{Gem.default_dir}) is not writable." + self.ui.say "Defaulting to user installation because default installation directory (#{Gem.default_dir}) is not writable." end execute |