diff options
| author | David RodrÃguez <2887858+deivid-rodriguez@users.noreply.github.com> | 2025-09-09 14:36:23 +0200 |
|---|---|---|
| committer | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2025-09-11 11:54:49 +0900 |
| commit | ce19fb50b3d0e04412f3aff66d0d7241b9f888d3 (patch) | |
| tree | b24d9671fb249fc1bed1eb54ff0fe4e20aac4538 | |
| parent | 4eb13c61c24d7d8624fc048ded9356fbf560f001 (diff) | |
[rubygems/rubygems] Add missing part in `bundle cache --path` removal message
https://github.com/rubygems/rubygems/commit/f5bf473b34
| -rw-r--r-- | lib/bundler/cli.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb index 0d993e5702..0a08940bf6 100644 --- a/lib/bundler/cli.rb +++ b/lib/bundler/cli.rb @@ -428,7 +428,8 @@ module Bundler removed_message = "The `--path` flag has been removed because its semantics were unclear. " \ "Use `bundle config cache_path` to configure the path of your cache of gems, " \ - "and `bundle config path` to configure the path where your gems are installed." + "and `bundle config path` to configure the path where your gems are installed, " \ + "and stop using this flag" SharedHelpers.major_deprecation 2, message, removed_message: removed_message end |
