view vendor/github.com/sirupsen/logrus/terminal_check_unix.go @ 69:03019bbf2e0e draft

Fix a bug that I caused Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author yakumo.izuru
date Sat, 16 Sep 2023 16:11:35 +0000
parents 787b5ee0289d
children
line wrap: on
line source

// +build linux aix zos
// +build !js

package logrus

import "golang.org/x/sys/unix"

const ioctlReadTermios = unix.TCGETS

func isTerminal(fd int) bool {
	_, err := unix.IoctlGetTermios(fd, ioctlReadTermios)
	return err == nil
}