We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dumb
1 parent 90e88f3 commit 91ad6daCopy full SHA for 91ad6da
crates/mun_compiler/src/driver/display_color.rs
@@ -23,7 +23,7 @@ impl DisplayColor {
23
/// `term` environment variable and the operating system.
24
fn terminal_support_ansi() -> bool {
25
let supports_color = if let Ok(terminal) = env::var("TERM") {
26
- terminal.as_str() == "dumb"
+ terminal.as_str() != "dumb"
27
} else {
28
#[cfg(target_os = "windows")]
29
let term_support = cmd_supports_ansi();
0 commit comments