Changed verbose output of git commands during update to use the existing style.

This commit is contained in:
Eloy Duran 2009-09-11 20:58:41 +02:00
parent d296038ead
commit 91736e24cb

View File

@ -38,7 +38,10 @@ class RefreshBrew
def execute(cmd)
out = `#{cmd}`
ohai "#{cmd}: #{out}" if ARGV.verbose?
if ARGV.verbose?
ohai cmd
puts out
end
out
end