Skip to content

Commit

Permalink
Fix logic error for enable/disable color output
Browse files Browse the repository at this point in the history
  • Loading branch information
wjwwood committed Jun 26, 2015
1 parent 3848f96 commit 9568fa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion catkin_tools/verbs/catkin_build/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def build_isolated_workspace(
log_dir = os.path.join(context.build_space_abs, 'build_logs')
color = True
if not force_color and not is_tty(sys.stdout):
color = True
color = False
out = OutputController(log_dir, quiet, interleave_output,
color, max_package_name_length, prefix_output=(jobs > 1))
if no_status:
Expand Down

0 comments on commit 9568fa8

Please sign in to comment.