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.
2 parents 56aa047 + a406e6e commit ddfde57Copy full SHA for ddfde57
src/main.rs
@@ -22,6 +22,10 @@ use ct::ports::CTPorts;
22
23
fn main() -> Result<(), String> {
24
show_banner();
25
+ if cfg!(windows) {
26
+ // disable colored text output on Windows as the Windows terminals do not support it yet
27
+ colored::control::set_override(false);
28
+ }
29
let app_args: Vec<String> = env::args().collect();
30
debug_log(|| String::from("Read ct file"));
31
let ct_file = CTFile::get_content().ok();
0 commit comments