mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-03 01:01:37 +00:00
The update allows redirecting the VMs output. Signed-off-by: Rolf Neugebauer <rolf.neugebauer@docker.com>
25 lines
413 B
Go
25 lines
413 B
Go
// +build !darwin
|
|
|
|
package hyperkit
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
func saneTerminal(f *os.File) error {
|
|
log.Fatal("Function not supported on your OS")
|
|
return nil
|
|
}
|
|
|
|
func setRaw(f *os.File) error {
|
|
log.Fatal("Function not supported on your OS")
|
|
return nil
|
|
}
|
|
|
|
// isTerminal checks if the provided file is a terminal
|
|
func isTerminal(f *os.File) bool {
|
|
log.Fatal("Function not supported on your OS")
|
|
return false
|
|
}
|