mirror of
https://github.com/walles/moar.git
synced 2024-11-25 19:56:20 +03:00
Warn about getting piped data on Windows
This commit is contained in:
parent
1e46089cff
commit
4e8c49ea8d
@ -18,6 +18,10 @@ func (screen *UnixScreen) setupSigwinchNotification() {
|
||||
}
|
||||
|
||||
func (screen *UnixScreen) setupTtyInTtyOut() {
|
||||
if !term.IsTerminal(int(os.Stdin.Fd())) {
|
||||
panic("Getting piped data on stdin is not supported on Windows, fixes needed in screen-setup-windows.go.")
|
||||
}
|
||||
|
||||
// This won't work if we're getting data piped to us, contributions welcome.
|
||||
screen.ttyIn = os.Stdin
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user