aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/cli
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-16 15:56:19 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-08-18 13:44:36 +0900
commit7659f00a8dd1df0e823cd5a47c6b4036c94e1321 (patch)
tree022532bf15fa4aedb3615d98329426ec82fb5ba5 /lib/bundler/cli
parentd80f5399adc3564d05339e6dff92ea1e95fb280a (diff)
downloadruby-7659f00a8dd1df0e823cd5a47c6b4036c94e1321.tar.gz
[bundler/bundler] Move local variable to only branch where it's used
https://github.com/bundler/bundler/commit/3995b3345d
Diffstat (limited to 'lib/bundler/cli')
-rw-r--r--lib/bundler/cli/open.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/open.rb b/lib/bundler/cli/open.rb
index 008cf711e9..df32e2f38b 100644
--- a/lib/bundler/cli/open.rb
+++ b/lib/bundler/cli/open.rb
@@ -14,10 +14,10 @@ module Bundler
editor = [ENV["BUNDLER_EDITOR"], ENV["VISUAL"], ENV["EDITOR"]].find {|e| !e.nil? && !e.empty? }
return Bundler.ui.info("To open a bundled gem, set $EDITOR or $BUNDLER_EDITOR") unless editor
return unless spec = Bundler::CLI::Common.select_spec(name, :regex_match)
- path = spec.full_gem_path
if spec.default_gem?
Bundler.ui.info "Unable to open #{name} because it's a default gem, so the directory it would normally be installed to does not exist."
else
+ path = spec.full_gem_path
Dir.chdir(path) do
command = Shellwords.split(editor) + [path]
Bundler.with_original_env do