Turn double modifier into a single conditional
This commit is contained in:
parent
688ae72919
commit
21f566b662
@ -34,13 +34,13 @@ class Tty
|
||||
end
|
||||
|
||||
def ohai title, *sput
|
||||
title = title.to_s[0, Tty.width - 4] if $stdout.tty? unless ARGV.verbose?
|
||||
title = title.to_s[0, Tty.width - 4] if $stdout.tty? && !ARGV.verbose?
|
||||
puts "#{Tty.blue}==>#{Tty.white} #{title}#{Tty.reset}"
|
||||
puts sput unless sput.empty?
|
||||
end
|
||||
|
||||
def oh1 title
|
||||
title = title.to_s[0, Tty.width - 4] if $stdout.tty? unless ARGV.verbose?
|
||||
title = title.to_s[0, Tty.width - 4] if $stdout.tty? && !ARGV.verbose?
|
||||
puts "#{Tty.green}==>#{Tty.white} #{title}#{Tty.reset}"
|
||||
end
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user