mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-11-04 18:13:42 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			297 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			297 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// +build !appengine,!js,windows
 | 
						|
 | 
						|
package logrus
 | 
						|
 | 
						|
import (
 | 
						|
	"io"
 | 
						|
	"os"
 | 
						|
	"syscall"
 | 
						|
)
 | 
						|
 | 
						|
func checkIfTerminal(w io.Writer) bool {
 | 
						|
	switch v := w.(type) {
 | 
						|
	case *os.File:
 | 
						|
		var mode uint32
 | 
						|
		err := syscall.GetConsoleMode(syscall.Handle(v.Fd()), &mode)
 | 
						|
		return err == nil
 | 
						|
	default:
 | 
						|
		return false
 | 
						|
	}
 | 
						|
}
 |