From f4300a84fdf83067bc3891b2c906686c05c6abaa 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 cb0391340c8..7f1eadf187e 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