diff options
Diffstat (limited to 'cli/lib.rs')
-rw-r--r-- | cli/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/lib.rs b/cli/lib.rs index 57a96c414..25c4b33a0 100644 --- a/cli/lib.rs +++ b/cli/lib.rs @@ -388,6 +388,9 @@ async fn test_command( } pub fn main() { + #[cfg(windows)] + ansi_term::enable_ansi_support().ok(); // For Windows 10 + log::set_logger(&LOGGER).unwrap(); let args: Vec<String> = env::args().collect(); let flags = flags::flags_from_vec(args); |