Files
aptly/utils/terminal.go
T
2014-02-18 01:00:49 +04:00

14 lines
235 B
Go

// +build !freebsd
package utils
import (
"code.google.com/p/go.crypto/ssh/terminal"
"syscall"
)
// RunningOnTerminal checks whether stdout is terminal
func RunningOnTerminal() bool {
return terminal.IsTerminal(syscall.Stdout)
}