Early return in Tty#color? for nil @stream

This commit is contained in:
Issy Long 2025-01-15 23:34:23 +00:00
parent 599616e8e0
commit f3a68b616c
No known key found for this signature in database

View File

@ -161,8 +161,9 @@ module Tty
return false if Homebrew::EnvConfig.no_color? return false if Homebrew::EnvConfig.no_color?
return true if Homebrew::EnvConfig.color? return true if Homebrew::EnvConfig.color?
return false if @stream.blank?
!!@stream&.tty? @stream.tty?
end end
end end
end end