mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-04-20 19:38:39 +00:00
11 lines
230 B
Go
11 lines
230 B
Go
// +build freebsd
|
|
|
|
package console
|
|
|
|
// RunningOnTerminal checks whether stdout is terminal
|
|
//
|
|
// Stub for FreeBSD, until in go1.3 terminal.IsTerminal would start working for FreeBSD
|
|
func RunningOnTerminal() bool {
|
|
return false
|
|
}
|