forked from TrueCloudLab/rclone
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:
parent
458c477ad8
commit
28f0c08a98
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue