brew irb fix

Broke when I removed `require 'formula'` from ARGV.rb.
This commit is contained in:
Max Howell 2012-08-13 15:01:44 -04:00
parent a3ca4f0872
commit 9fffbde987

View File

@ -5,7 +5,7 @@ module Homebrew extend self
else
ohai "Interactive Homebrew Shell"
puts "Example commands available with: brew irb --help"
exec "irb", "-I#{HOMEBREW_REPOSITORY}/Library/Homebrew", "-rglobal"
exec "irb", "-I#{HOMEBREW_REPOSITORY}/Library/Homebrew", "-rglobal", '-rformula', '-rkeg'
end
end
end