diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-09-02 23:37:14 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-09-24 13:45:03 -0700 |
commit | 2e3a8b495d5d6c5ad595d65cedafcc2b0d75d559 (patch) | |
tree | 10938fe00a8d5a92190c478eddded382d2c7fea4 /tools/build.py | |
parent | be8f49b33263238f17d8cbb334a36db6385fced2 (diff) |
tools: make color output work on windows
Diffstat (limited to 'tools/build.py')
-rwxr-xr-x | tools/build.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/build.py b/tools/build.py index 9de84f541..bbcd24762 100755 --- a/tools/build.py +++ b/tools/build.py @@ -4,7 +4,9 @@ from __future__ import print_function import os import sys import third_party -from util import build_path, run +from util import build_path, enable_ansi_colors, run + +enable_ansi_colors() third_party.fix_symlinks() |