Files
aptly/console/terminal.go
T
2017-07-18 11:45:29 +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)
}