mirror of
https://github.com/Luzifer/ots.git
synced 2024-10-01 01:06:09 -04:00
38b1cd09f4
Signed-off-by: Knut Ahlers <knut@ahlers.me>
20 lines
265 B
Go
20 lines
265 B
Go
// +build !appengine,!js,!windows
|
|
|
|
package logrus
|
|
|
|
import (
|
|
"io"
|
|
"os"
|
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
|
)
|
|
|
|
func checkIfTerminal(w io.Writer) bool {
|
|
switch v := w.(type) {
|
|
case *os.File:
|
|
return terminal.IsTerminal(int(v.Fd()))
|
|
default:
|
|
return false
|
|
}
|
|
}
|