mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			231 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			231 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +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
 | 
						|
}
 |