1
0
mirror of https://github.com/rancher/os.git synced 2025-07-13 06:34:04 +00:00
os/pkg/util/term.go
2018-09-19 17:18:49 +08:00

10 lines
122 B
Go

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