diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2018-09-18 20:27:53 -0300 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2018-09-18 21:40:54 -0300 |
commit | bae91432ee8dc278ec7bb8d0a292391708235715 (patch) | |
tree | f0022ffd67f90fba021aaa2fe0d07bb9d36adee5 /lib/bundler/cli.rb | |
parent | 2d2059a87e1e1bd9a1fc986c7656508af51b6207 (diff) | |
download | bundler-bae91432ee8dc278ec7bb8d0a292391708235715.tar.gz |
Fix issue with initial implementation
Diffstat (limited to 'lib/bundler/cli.rb')
-rw-r--r-- | lib/bundler/cli.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli.rb b/lib/bundler/cli.rb index 73f4e1bf9d..5679b65553 100644 --- a/lib/bundler/cli.rb +++ b/lib/bundler/cli.rb @@ -229,7 +229,7 @@ module Bundler "Include gems that are part of the specified named group." map "i" => "install" def install - SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV[1] == "--force" + SharedHelpers.major_deprecation(2, "The `--force` option has been renamed to `--redownload`") if ARGV.include?("--force") require "bundler/cli/install" Bundler.settings.temporary(:no_install => false) do Install.new(options.dup).run |