1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 04:48:52 -05:00

fix(cli): don't add colors for non-tty outputs (#13031)

This commit is contained in:
VishnuJin 2021-12-10 19:35:40 +05:30 committed by GitHub
parent 542b71eef9
commit 38f1630223
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,11 +9,14 @@ use termcolor::{Ansi, ColorSpec, WriteColor};
use termcolor::{BufferWriter, ColorChoice};
lazy_static::lazy_static! {
// checks if the output is piped to a tty
static ref IS_TTY: bool = atty::is(atty::Stream::Stdout);
static ref NO_COLOR: bool = std::env::var_os("NO_COLOR").is_some();
}
// if the output is piped to a tty, use color
pub fn use_color() -> bool {
!(*NO_COLOR)
!(*NO_COLOR) && *IS_TTY
}
#[cfg(windows)]