1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-14 23:33:22 +00:00
Files
rclone/vendor/github.com/sirupsen/logrus/terminal_check_notappengine.go
2019-07-28 12:05:50 +01:00

18 lines
232 B
Go

// +build !appengine,!js,!windows,!nacl,!plan9
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
}
}