From 4f93f885984b007500354d80ef306abd793f8ca3 Mon Sep 17 00:00:00 2001 From: Jeremie Dimino Date: Mon, 8 Jul 2019 17:51:50 +0100 Subject: [PATCH] Fix coloring of messages from the compiler Signed-off-by: Jeremie Dimino --- src/main.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ml b/src/main.ml index c321ec4eb1b..b6cde9e14da 100644 --- a/src/main.ml +++ b/src/main.ml @@ -24,7 +24,7 @@ let package_install_file w pkg = let setup_env ~capture_outputs = let env = - if capture_outputs || not (Lazy.force Ansi_color.stderr_supports_color) then + if not capture_outputs || not (Lazy.force Ansi_color.stderr_supports_color) then Env.initial else Colors.setup_env_for_colors Env.initial