summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-16 15:56:19 +0200
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-08-16 15:56:19 +0200
commit3995b3345d3c66e92efc44fabaa7171b55e2a8b8 (patch)
tree8049d20a66a75b558b16d70608b9d0eb06f9b865
parent792d7247523d728bfd792eeaf5f6565dadbf5eda (diff)
downloadbundler-issue-4436.tar.gz
Move local variable to only branch where it's usedissue-4436
-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