Only pygmentize if stdout is a tty

This commit is contained in:
David Tolnay 2016-12-23 11:33:28 -05:00
parent 1fb1775606
commit 6c78e4ee1a
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -58,9 +58,13 @@ fn cargo_expand() -> io::Result<i32> {
};
// Pipe to pygmentize
let _wait = match which(&["pygmentize", "-l", "rust"]) {
Some(pyg) => Some(try!(cmd.pipe_to(&[&pyg, "-l", "rust"], None))),
None => None,
let _wait = if stdout_isatty() {
match which(&["pygmentize", "-l", "rust"]) {
Some(pyg) => Some(try!(cmd.pipe_to(&[&pyg, "-l", "rust"], None))),
None => None,
}
} else {
None
};
run(cmd)