mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +08:00
Fix #11444: remote breaks with stdout redirection
`setConsoleMode` should do nothing if the handle is not a terminal. The proposed change is [exactly what `golang.org/x/term/IsTerminal()` does on Windows](https://cs.opensource.google/go/x/term/+/6886f2df:term_windows.go). [NO TESTS NEEDED] Signed-off-by: Anton Tykhyy <atykhyy@gmail.com>
This commit is contained in:
@ -25,7 +25,7 @@ func setConsoleMode(handle windows.Handle, flags uint32) error {
|
||||
var mode uint32
|
||||
err := windows.GetConsoleMode(handle, &mode)
|
||||
if err != nil {
|
||||
return err
|
||||
return nil // not a terminal
|
||||
}
|
||||
if err := windows.SetConsoleMode(handle, mode|flags); err != nil {
|
||||
// In similar code, it is not considered an error if we cannot set the
|
||||
|
Reference in New Issue
Block a user