mirror of
https://github.com/rancher/os.git
synced 2025-09-09 10:40:30 +00:00
- Buildroot 2022.02.8 -- with cherry-picked memory leak fix for dhcpcd - Kernel 5.10.162 - Docker 23.0.0-rc.3 - System-docker 17.06.107 - Removed debugging tool system-docker-containerd-ctr - Build ros binary with Go version 1.19.5 - Improve debug mode by disabling auto reboot and asking resolution
11 lines
139 B
Go
11 lines
139 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package util
|
|
|
|
import "github.com/tredoe/term"
|
|
|
|
func IsRunningInTty() bool {
|
|
return term.IsTerminal(1)
|
|
}
|