Skip to content
Snippets Groups Projects
Commit 0ac3e83a authored by Max Howell's avatar Max Howell
Browse files

Make `brew --prefix` very fast

Because people use this in .bash_profile etc. We should be as fast as possible.
parent 0efd1b9e
No related branches found
No related tags found
No related merge requests found
......@@ -5,6 +5,11 @@ std_trap = trap("INT") { exit! 130 } # no backtrace thanks
HOMEBREW_BREW_FILE = ENV['HOMEBREW_BREW_FILE'] = File.expand_path(__FILE__)
if ARGV == %w{--prefix}
puts File.dirname(File.dirname(HOMEBREW_BREW_FILE))
exit 0
end
require 'pathname'
HOMEBREW_LIBRARY_PATH = Pathname.new(__FILE__).realpath.dirname.parent.join("Library/Homebrew").to_s
$:.unshift(HOMEBREW_LIBRARY_PATH + '/vendor')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment