summaryrefslogtreecommitdiff
path: root/lib/bundler/cli.rb
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2023-11-23 22:53:35 +0100
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2023-11-27 15:04:40 +0900
commitbd4bd61650403121dc1fc29fab850d048d851a55 (patch)
tree82dc118ac28b5a21b420b83d4e66a1e22abe5c9b /lib/bundler/cli.rb
parent60803e192eebd1048f28ea5ba2a2f2c753424dad (diff)
[rubygems/rubygems] Simplify remembered flags deprecation message
Configuration is now local by default. https://github.com/rubygems/rubygems/commit/6bc7709aa8
Diffstat (limited to 'lib/bundler/cli.rb')
-rw-r--r--lib/bundler/cli.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb
index 2938f30e97..942f2984d4 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -888,7 +888,7 @@ module Bundler
Bundler::SharedHelpers.major_deprecation 2,
"The `#{flag_name}` flag is deprecated because it relies on being " \
"remembered across bundler invocations, which bundler will no longer " \
- "do in future versions. Instead please use `bundle config set --local #{name.tr("-", "_")} " \
+ "do in future versions. Instead please use `bundle config set #{name.tr("-", "_")} " \
"'#{value}'`, and stop using this flag"
end
end