Color even if redirecting stdout

This commit is contained in:
David Tolnay 2017-01-12 20:46:08 -08:00
parent d48a89a7d1
commit 5ac277bac5
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -199,7 +199,7 @@ fn wrap_args<I>(it: I, outfile: Option<&PathBuf>) -> Vec<OsString>
}
if !has_color {
let color = stdout_isatty() && stderr_isatty();
let color = stderr_isatty();
let setting = if color { "always" } else { "never" };
args.push(format!("--color={}", setting).into());
}