diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-02 19:48:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-02 19:48:10 +0200 |
commit | 7ffc26078d672b5c4fafb3ac10d1850aee1ecb7b (patch) | |
tree | 2a0f72c0431721b37410830c45687cb9f1d34552 /mesonbuild/mlog.py | |
parent | 41a98d0fdda516ba4b8a7ae31874e37ec42cb363 (diff) | |
parent | 2efedf80e0129ee1dea560aa652f6358e3686854 (diff) | |
download | meson-7ffc26078d672b5c4fafb3ac10d1850aee1ecb7b.zip meson-7ffc26078d672b5c4fafb3ac10d1850aee1ecb7b.tar.gz meson-7ffc26078d672b5c4fafb3ac10d1850aee1ecb7b.tar.bz2 |
Merge pull request #4389 from xclaesse/subprojects-cmd
Add 'meson subprojects update' command
Diffstat (limited to 'mesonbuild/mlog.py')
-rw-r--r-- | mesonbuild/mlog.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mesonbuild/mlog.py b/mesonbuild/mlog.py index 890cb46..ea99d09 100644 --- a/mesonbuild/mlog.py +++ b/mesonbuild/mlog.py @@ -96,6 +96,9 @@ def green(text): def yellow(text): return AnsiDecorator(text, "\033[1;33m") +def blue(text): + return AnsiDecorator(text, "\033[1;34m") + def cyan(text): return AnsiDecorator(text, "\033[1;36m") |