summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLutz Lengemann <mobilutz@users.noreply.github.com>2016-02-18 09:01:34 +0100
committerLutz Lengemann <mobilutz@users.noreply.github.com>2016-02-18 09:01:34 +0100
commit3ed2440ed5476da0defe7d3c30fc26a0ffd106df (patch)
tree34439bd3553a0eac95567be8abf0e3107ca4bd31
parent902905c8119e3a003075c3673cb1e7bdcf6104fd (diff)
downloadbundler-3ed2440ed5476da0defe7d3c30fc26a0ffd106df.tar.gz
Call viz with dupped options so they can be edited
-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 8e4e8e9486..ed87b03eaa 100644
--- a/lib/bundler/cli.rb
+++ b/lib/bundler/cli.rb
@@ -359,7 +359,7 @@ module Bundler
method_option :without, :type => :array, :default => [], :aliases => "-W", :banner => "GROUP[ GROUP...]", :desc => "Exclude gems that are part of the specified named group."
def viz
require "bundler/cli/viz"
- Viz.new(options).run
+ Viz.new(options.dup).run
end
desc "gem GEM [OPTIONS]", "Creates a skeleton for creating a rubygem"