2010-09-11 20:22:54 +01:00
|
|
|
module Homebrew extend self
|
2012-03-19 00:15:40 +00:00
|
|
|
|
2010-09-11 20:22:54 +01:00
|
|
|
def link
|
2012-02-04 00:01:29 -06:00
|
|
|
raise KegUnspecifiedError if ARGV.named.empty?
|
|
|
|
|
2012-03-04 02:47:53 +00:00
|
|
|
if Process.uid.zero? and not File.stat(HOMEBREW_BREW_FILE).uid.zero?
|
|
|
|
# note we only abort if Homebrew is *not* installed as sudo and the user
|
|
|
|
# calls brew as root. The fix is to chown brew to root.
|
|
|
|
abort "Cowardly refusing to `sudo brew link'"
|
|
|
|
end
|
|
|
|
|
2010-09-11 20:22:54 +01:00
|
|
|
ARGV.kegs.each do |keg|
|
2012-03-19 00:15:40 +00:00
|
|
|
print "Linking #{keg}... " do
|
|
|
|
puts if ARGV.verbose?
|
|
|
|
puts "#{keg.link} symlinks created"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
# Allows us to ensure a puts happens before the block exits so that if say,
|
|
|
|
# an exception is thrown, its output starts on a new line.
|
|
|
|
def print str, &block
|
|
|
|
Kernel.print str
|
|
|
|
puts_capture = Class.new do
|
|
|
|
def self.puts str
|
|
|
|
$did_puts = true
|
|
|
|
Kernel.puts str
|
|
|
|
end
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
2012-03-19 00:15:40 +00:00
|
|
|
|
|
|
|
puts_capture.instance_eval &block
|
|
|
|
|
|
|
|
ensure
|
|
|
|
puts unless $did_puts
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|
2012-03-19 00:15:40 +00:00
|
|
|
|
2010-09-11 20:22:54 +01:00
|
|
|
end
|