Skip to content

Commit d548783

Browse files
committed
Set color override to true if enabled
Addresses #86
1 parent 99ff814 commit d548783

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ fn main() -> Result<()> {
8484
#[cfg(not(target = "windows"))]
8585
let enabled = true;
8686

87-
if !enabled {
88-
colored::control::set_override(false);
87+
if enabled {
88+
colored::control::set_override(true);
8989
}
9090

9191
if !is_git_installed() {

0 commit comments

Comments
 (0)