1
0
mirror of https://github.com/rancher/os.git synced 2025-06-15 09:48:26 +00:00
os/util/term.go
Sven Dowideit 9a75d2d5b4 hashicorp version pkg uses alpha sort on -rc11 metadata - so switching to Josh's catalog pkg
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-02-10 00:38:22 +00:00

10 lines
122 B
Go

// +build linux
package util
import "github.com/tredoe/term"
func IsRunningInTty() bool {
return term.IsTerminal(1)
}