terminal: use stdout on windows to preserve old behavior

--progress and --log-file should be usable together, but windows
does not currently preserve the original stderr in
config.PasswordPromptOutput; so use stdout explicitly to match the
old behavior.
This commit is contained in:
Carl Edquist 2022-10-04 11:23:47 -05:00
parent 458c477ad8
commit 28f0c08a98

View File

@ -80,8 +80,8 @@ func Start() {
// If output is not a tty then remove escape codes
Out = colorable.NewNonColorable(f)
} else if runtime.GOOS == "windows" && os.Getenv("TERM") != "" {
// If TERM is set just use stderr
Out = f
// If TERM is set just use stdout
Out = os.Stdout
} else {
Out = colorable.NewColorable(f)
}