diff options
author | Matt A. Tobin <email@mattatobin.com> | 2021-10-30 16:08:27 -0400 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2022-04-02 14:27:46 +0200 |
commit | 9a811901ef460038dea2f5c8ed7bf2f15cee479f (patch) | |
tree | 6c8d21c4b4029c2e567247f32f59ee694e49317a /python | |
parent | 4a7af0d90fd6521047fb57c37be455b1e8887e79 (diff) | |
download | uxp-9a811901ef460038dea2f5c8ed7bf2f15cee479f.tar.gz |
No Issue - Make building the backend fun again!
Diffstat (limited to 'python')
-rw-r--r-- | python/mozbuild/mozbuild/config_status.py | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/python/mozbuild/mozbuild/config_status.py b/python/mozbuild/mozbuild/config_status.py index e279dbf483..0b4e6e41dd 100644 --- a/python/mozbuild/mozbuild/config_status.py +++ b/python/mozbuild/mozbuild/config_status.py @@ -13,6 +13,7 @@ import os import subprocess import sys import time +import random from argparse import ArgumentParser @@ -125,8 +126,24 @@ def config_status(topobjdir='.', topsrcdir='.', defines=None, log_manager.add_terminal_logging(level=log_level) log_manager.enable_unstructured() - print('Feeding the hatchlings...', file=sys.stderr) + STATUS_MESSAGES = [ + 'Walking the dog', + 'Feeding the hatchlings', + 'Pressing play on tape', + 'Spinning the wheel', + 'Adjusting flux capacitor', + 'Granting wishes', + 'Auditing the taxes', + 'Twiddling thumbs', + 'Consulting the manual', + 'Brewing coffee', + 'Inserting coin', + 'Deriving optimal formula', + ] + + print('{0}...'.format(random.choice(STATUS_MESSAGES)), file=sys.stderr) sys.stderr.flush() + if len(selected_backends) > 1: definitions = list(definitions) |