mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
13 lines
180 B
Go
13 lines
180 B
Go
// +build !freebsd
|
|
|
|
package utils
|
|
|
|
import (
|
|
"code.google.com/p/go.crypto/ssh/terminal"
|
|
"syscall"
|
|
)
|
|
|
|
func RunningOnTerminal() bool {
|
|
return terminal.IsTerminal(syscall.Stdout)
|
|
}
|