mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-01-12 03:21:33 +00:00
13 lines
191 B
Go
13 lines
191 B
Go
package console
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"golang.org/x/term"
|
|
)
|
|
|
|
// RunningOnTerminal checks whether stdout is terminal
|
|
func RunningOnTerminal() bool {
|
|
return term.IsTerminal(syscall.Stdout)
|
|
}
|