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