mirror of
				https://gitea.com/Lydanne/buildx.git
				synced 2025-10-31 08:03:43 +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
 | |
| 	}
 | |
| }
 | 
