summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2020-05-28 23:02:28 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2020-06-05 07:32:42 +0900
commit9422162f71e0d0f04034293125f925086abbbaf9 (patch)
tree16aa08a6b5c760b9a8181ff909db403dc5c6a859
parent97d05c9db38f92b214cd30bb821ce29add20f082 (diff)
[rubygems/rubygems] Remove redundant substraction
https://github.com/rubygems/rubygems/commit/365b46329b
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3184
-rw-r--r--lib/bundler/cli/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/install.rb b/lib/bundler/cli/install.rb
index ed21485170..068046fdc3 100644
--- a/lib/bundler/cli/install.rb
+++ b/lib/bundler/cli/install.rb
@@ -164,7 +164,7 @@ module Bundler
# need to nil them out first to get around validation for backwards compatibility
Bundler.settings.set_command_option :without, nil
Bundler.settings.set_command_option :with, nil
- Bundler.settings.set_command_option :without, without - with
+ Bundler.settings.set_command_option :without, without
Bundler.settings.set_command_option :with, with
end