Files
aptly/console/terminal.go
T
2017-07-04 14:45:08 +02:00

13 lines
210 B
Go

package console
import (
"syscall"
"golang.org/x/crypto/ssh/terminal"
)
// RunningOnTerminal checks whether stdout is terminal
func RunningOnTerminal() bool {
return terminal.IsTerminal(syscall.Stdout)
}