aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXu Cheng2015-05-27 21:32:10 +0800
committerXu Cheng2015-05-29 17:02:23 +0800
commitb931b98d356c492c389e79d0a11cbed56f8625ac (patch)
tree6276adfba2f108d053c884a62794ba4a5706d84a
parent932afdd9be7d1ba1de97b7730bb6d58b118eedf5 (diff)
downloadbrew-b931b98d356c492c389e79d0a11cbed56f8625ac.tar.bz2
interactive_shell: use Formula#full_name
-rw-r--r--Library/Homebrew/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index ea8d30a94..beb9e05cb 100644
--- a/Library/Homebrew/utils.rb
+++ b/Library/Homebrew/utils.rb
@@ -85,7 +85,7 @@ end
def interactive_shell f=nil
unless f.nil?
ENV['HOMEBREW_DEBUG_PREFIX'] = f.prefix
- ENV['HOMEBREW_DEBUG_INSTALL'] = f.name
+ ENV['HOMEBREW_DEBUG_INSTALL'] = f.full_name
end
Process.wait fork { exec ENV['SHELL'] }