Skip to content

Commit

Permalink
Fix coloring of messages from the compiler
Browse files Browse the repository at this point in the history
Signed-off-by: Jeremie Dimino <jeremie@dimino.org>
  • Loading branch information
jeremiedimino committed Jul 9, 2019
1 parent b91be8c commit f4300a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f4300a8

Please sign in to comment.