From 56ac1b0e1435a425eb7451e10c0606a009d9113a Mon Sep 17 00:00:00 2001 From: David Rodríguez Date: Thu, 23 Nov 2023 23:04:44 +0100 Subject: [rubygems/rubygems] Fix advice in `bundle install --system` deprecation https://github.com/rubygems/rubygems/commit/59a66e3560 --- lib/bundler/cli.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb index 8099b74ba1..1f7afe72d8 100644 --- a/lib/bundler/cli.rb +++ b/lib/bundler/cli.rb @@ -250,10 +250,12 @@ module Bundler def install SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force") - %w[clean deployment frozen no-prune path shebang system without with].each do |option| + %w[clean deployment frozen no-prune path shebang without with].each do |option| remembered_flag_deprecation(option) end + print_remembered_flag_deprecation("--system", "path.system", "true") if ARGV.include?("--system") + remembered_negative_flag_deprecation("no-deployment") require_relative "cli/install" -- cgit v1.2.3