summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Arko <mail@arko.net>2015-03-10 11:56:09 -0700
committerAndré Arko <mail@arko.net>2015-03-10 11:56:09 -0700
commit07d17d90804fc409a8d6bfedfb810fba5678dbcb (patch)
tree59c58847b815f3851da1f38926ac8234b1c191c0
parentdc0e847bc88554ebb40367dd18432f99d3097686 (diff)
parent4ba2f6306ebfec9b675c5bc3c4a7fab3317e62fd (diff)
downloadbundler-07d17d90804fc409a8d6bfedfb810fba5678dbcb.tar.gz
Merge pull request #3466 from kohgpat/remove-unused-dups
Remove unused dups
-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 43dd40a500..4d6715120b 100644
--- a/lib/bundler/cli/install.rb
+++ b/lib/bundler/cli/install.rb
@@ -2,7 +2,7 @@ module Bundler
class CLI::Install
attr_reader :options
def initialize(options)
- @options = options.dup
+ @options = options
end
def run