Merge "Improve dumb terminal detection"

am: a3ded95424

Change-Id: I8e602bcfd343f6d7ec2163460c89956d0eccdbbc
This commit is contained in:
Mikhail Naganov 2019-06-28 20:24:43 -07:00 committed by android-build-merger
commit 6be3939c68

View file

@ -23,6 +23,9 @@ import (
)
func isSmartTerminal(w io.Writer) bool {
if term, ok := os.LookupEnv("TERM"); ok && term == "dumb" {
return false
}
if f, ok := w.(*os.File); ok {
var termios syscall.Termios
_, _, err := syscall.Syscall6(syscall.SYS_IOCTL, f.Fd(),