mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Only pygmentize if stdout is a tty
This commit is contained in:
parent
1fb1775606
commit
6c78e4ee1a
1 changed files with 7 additions and 3 deletions
10
src/main.rs
10
src/main.rs
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue